I have a navigation based application. I want to add an image covering the entire screen. If i add it on top of a pushed view controller it won’t cover the navigation bar. How to solve it?.
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You should be able to just use
[self presentModalViewController: animated:];So wrapp your UIImage into aUIViewControllerand present it. It will display it in full screen.