I have a view that I am presenting modally. For some reason it animates very slowly.
[self.parentViewController.tabBarController presentModalViewController:browser animated:TRUE];
I’m not sure why? I have even tried:
[self presentModalViewController:browser animated:TRUE];
UPDATE:
The UITableViewController that is presenting it, is drawing custom UITableViewCell’s that have images with rounded corners. Not sure if that makes a difference.
There’s so setting for the animation speed. It’s all native. The only time I have noticed this is when my device was running slowly. Try it in the simulator versus the iPhone. In addition, may sure you are not debugging as that will eat resources.
If it is still slow, I would wonder what your model view controller is loading – i.e. large nib or
viewDidLoad?