At the start, my application shows full screen view (320x480) without status bar. After a user do some selection, the app uses +[UIView transitionFromView:toView:duration:options:completion:]
to switch to normal view with status bar. Unfortunately, during transition it seems that toView has size 320x480, so part of the view is below status bar. Just after transition completes, view is resized to 320x460 (as it should be initially).
My question is how can I force the view to be resized correctly before transition.