Reputation: 75
I'm getting this outlet message in the debugger when I go to start my application: "2014-07-17 23:52:13.449 Journey[59668:60b] The app delegate must implement the window property if it wants to use a main storyboard file." But I'm not getting any errors or warnings? Please help.
Upvotes: 0
Views: 66
Reputation: 114
Make sure you include the following line of code in your App Delegate header file.
@property (strong, nonatomic) UIWindow *window;
Upvotes: 3