How can I present a modal view controller from the app delegate’s view, the top most? Trying to present a modal view controller from a UIView, which made me confused.
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.
Application delegates do not manage a view. You should present a modal view controller from the
-viewDidAppear:method of the first view controller that gets put on screen in-application:didFinishLaunchingWithOptions:.