I'm switching tabs programmatically in a tab bar driven application using UITabBarController.selectedIndex. The problem I'm trying to solve is how to animate the transition between the views. ie.. from the view of the current tab to the view of the selected tab.

The first thought was to make use of the UITabBarControllerDelegate, but it appears that this is not called when programmatically switching tabs. I'm now considering the UITabBarDelegate.didSelectItem: as a possible hook to set a transition animation.

Has anyone manageged to animate the transitions? How did you go about it?

link|improve this question

feedback

1 Answer

up vote 26 down vote accepted

After much research I came up with two working solutions. Both of these worked and did the animation between tabs.

Solution 1: transition from view (simple)

This is the easiest and makes use of a predefined UIView transition method. With this solution we don't need to manage the views because the method does the work for us.

// Get views. controllerIndex is passed in as the controller we want to go to. 
UIView * fromView = tabBarController.selectedViewController.view;
UIView * toView = [[tabBarController.viewControllers objectAtIndex:controllerIndex] view];

// Transition using a page curl.
[UIView transitionFromView:fromView 
                    toView:toView 
                  duration:0.5 
                   options:(controllerIndex > tabBarController.selectedIndex ? UIViewAnimationOptionTransitionCurlUp : UIViewAnimationOptionTransitionCurlDown)
                completion:^(BOOL finished) {
                    if (finished) {
                        tabBarController.selectedIndex = controllerIndex;
                    }
                }];

Solution 2: scroll (more complex)

A more complex solution, but gives you more control of the animation. In this example we get the views to slide on and off. With this one we need to manage the views ourselves.

// Get the views.
UIView * fromView = tabBarController.selectedViewController.view;
UIView * toView = [[tabBarController.viewControllers objectAtIndex:controllerIndex] view];

// Get the size of the view area.
CGRect viewSize = fromView.frame;
BOOL scrollRight = controllerIndex > tabBarController.selectedIndex;

// Add the to view to the tab bar view.
[fromView.superview addSubview:toView];

// Position it off screen.
toView.frame = CGRectMake((scrollRight ? 320 : -320), viewSize.origin.y, 320, viewSize.size.height);

[UIView animateWithDuration:0.3 
                 animations: ^{

                     // Animate the views on and off the screen. This will appear to slide.
                     fromView.frame =CGRectMake((scrollRight ? -320 : 320), viewSize.origin.y, 320, viewSize.size.height);
                     toView.frame =CGRectMake(0, viewSize.origin.y, 320, viewSize.size.height);
                 }

                 completion:^(BOOL finished) {
                     if (finished) {

                         // Remove the old view from the tabbar view.
                         [fromView removeFromSuperview];
                         tabBarController.selectedIndex = controllerIndex;                
                     }
                 }];
link|improve this answer
1  
Thanks very very much for the answer, it works really well. However I found one bug in both solutions, I'm not sure if this happens to everyone, but it seems that when the page is transitioned, there is a gap between the navigation bar and the status bar, then after the animation finishes, the gap closes. This makes the ending of the animation a little bit jittery. Do you know why this is happening? – Enrico Susatyo Jun 17 '11 at 4:19
Hmm, wasn't happening with my code. That sounds very much like an issue I've seen before where the positioning of the new views frame is not correct in relation to the window and status bar. Try running toe code to swap views without doing a transition and see if it still occurs. – drekka Jun 17 '11 at 4:57
Yep, it still occurs without doing a transition. I tried the first method. It might be the positioning of the frame, i'll play around with it a bit more. I tried shifting the frame up, and tried matching the frame with the fromView but have no luck so far... – Enrico Susatyo Jun 17 '11 at 5:12
It seems that it's similar to this question: stackoverflow.com/questions/2144502/… But I haven't worked it out yet – Enrico Susatyo Jun 17 '11 at 5:31
2  
In what method should your code be put in? – Emile Cormier Dec 15 '11 at 19:22
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.