How to add a view on uinavigationcontroller covering navigation bar in iphone?
I have a navigation based application. I want to add an image covering the entire screen. If i add it on top of a push开发者_如何学Pythoned view controller it won't cover the navigation bar. How to solve it?.
You should be able to just use [self presentModalViewController: animated:];
So wrapp your UIImage into a UIViewController
and present it. It will display it in full screen.
精彩评论