i have problem with showing an UIView on app delegate … there is no place on interface builder to connect IBOutlet with app delegate .
[self.view addSubview:UIVIEW]; //doesn't work
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.
The chances are you don’t want to display anything in the app delegate. Typically when you start a new project there will be a MainViewController which is where you want to put new views and such into.
If you don’t have that then you’ll want to add it to the window property of the app delegate.