Interface 2, Advanced iOSMockup & Code Gen($9.99)
Make your own iPhone appsand run them live!(free)
Pic Frame Dynamo: Photo Editing($0.99)
Abiliator($1.99)
UIImageView *im = [[UIImageView alloc] initWithFrame:CGRectMake(210, 250, 100, 100)];
- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event { // here run animation [UIView beginAnimations:nil context:nil]; [UIView setAnimationCurve: UIViewAnimationCurveEaseIn]; [UIView setAnimationDuration:5]; [im setCenter:CGPointMake(im.center.x,im.center.y-400)]; [UIView commitAnimations]; } - (void)touchesEnded:(NSSet *)touches withEvent:(UIEvent *)event { // here run reverse animation - just a sample (you can manipulate variables) }