I have a UIViewController which has multiple subviews. Each subview is a UIView subclass, and I want to switch between views by tapping the toolbar buttons. I did this by using the animation blocks:
Example:
[UIView animateWithDuration:0.5
delay:0.0
options:UIViewAnimationOptionTransitionFlipFromRight
animations:^{
[StoreView removeFromSuperview];
[self.view addSubview:HomeView];
}
completion:NULL];
Everything is working fine actually. The problem is the transition is not really smooth. For example, the HomeView has five buttons scattered (as part of the design), and whenever I switch from one view to HomeView, these buttons will come from a corner and rearrange itself after the transition, which is not exactly beautiful to look at.
So how will I make these buttons stay in place?
[UIView transitionFromView:HomeView toView:StoreView duration:0.75 options:UIViewAnimationOptionTransitionFlipFromRight completion:nil];? This would replace your current animation block. – Dustin Aug 13 '12 at 15:01StoreView. Is it just a plain view? Does it contain data from the web? Does it contain High-res images? The solution varies by the problem. – Ravi Aug 13 '12 at 15:11StoreViewis not the problem. It shows up perfectly. No delays whatsoever.HomeViewis the only one that I'm concerned about.HomeViewcontains customUIButtonswith images in it. Basically, these UIButtons will redirect me to the other views. These other views doesn't really contain any buttons except for the Home Button, so there is no problem when I animate fromHomeViewto another view. As for the screenshot, I will be happy to provide but it is hard for me to capture one since it happens really fast. – Anna Fortuna Aug 14 '12 at 1:41