I have a very simple animation in iOS that fades a view, resizes a container to fit another view, then fades that other view back in. It\'s quite easy to do and very straigh
You can use:
[NSAnimationContext runAnimationGroup:^(NSAnimationContext *context) { [context setDuration:2.0]; //Animation code } completionHandler:^{ //Completion Code NSLog(@"Completed"); }];