Friday, 14 June 2013

Page Turn Animation on UIView


-(void)swipedToRight:(id)sender
{
    [UIView beginAnimations:@"Flip" context:nil];
    [UIView setAnimationDuration:1.0];
    [UIView setAnimationCurve:UIViewAnimationCurveEaseInOut];
    [UIView setAnimationTransition:UIViewAnimationTransitionCurlDown forView:self.view cache:YES];
    //Do your action here-
    [self myAction];

    [UIView commitAnimations];
}

-(void)swipedToLeft:(id)sender
{
    [UIView beginAnimations:@"Flip" context:nil];
    [UIView setAnimationDuration:1.0];
    [UIView setAnimationCurve:UIViewAnimationCurveEaseInOut];
    [UIView setAnimationTransition:UIViewAnimationTransitionCurlUp forView:self.view cache:YES];
    //Do your action here-    
    [self myAction];

    [UIView commitAnimations];
}

No comments:

Post a Comment