Powered By Blogger
Showing posts with label UIView. Show all posts
Showing posts with label UIView. Show all posts

Thursday, April 7, 2011

UIViewAnimation Transition Code

    UIView *kView;

    CGContextRef context = UIGraphicsGetCurrentContext();
    [UIView beginAnimations:@"Right Flip" context:context];
    [UIView setAnimationTransition: UIViewAnimationTransitionFlipFromRight forView:kView cache:YES];
    [UIView setAnimationCurve:UIViewAnimationCurveEaseOut];
    [UIView setAnimationDuration:0.3];
    [UIView setAnimationDelegate:self];
    [UIView commitAnimations];