- (IBAction) tappedRightButton:(id)senderapp
{spa
NSUInteger selectedIndex = [self.tabBarController selectedIndex];3d
NSArray *aryViewController = self.tabBarController.viewControllers;orm
if (selectedIndex < aryViewController.count - 1) {ip
UIView *fromView = [self.tabBarController.selectedViewController view];it
UIView *toView = [[self.tabBarController.viewControllers objectAtIndex:selectedIndex + 1] view];io
[UIView transitionFromView:fromView toView:toView duration:0.5f options:UIViewAnimationOptionTransitionFlipFromRight completion:^(BOOL finished) {object
if (finished) {select
[self.tabBarController setSelectedIndex:selectedIndex + 1];transition
}
}];
}
}
- (IBAction) tappedLeftButton:(id)sender
{
NSUInteger selectedIndex = [self.tabBarController selectedIndex];
if (selectedIndex > 0) {
UIView *fromView = [self.tabBarController.selectedViewController view];
UIView *toView = [[self.tabBarController.viewControllers objectAtIndex:selectedIndex - 1] view];
[UIView transitionFromView:fromView toView:toView duration:0.5f options:UIViewAnimationOptionTransitionFlipFromLeft completion:^(BOOL finished) {
if (finished) {
[self.tabBarController setSelectedIndex:selectedIndex - 1];
}
}];
}
}