码迷,mamicode.com
首页 > 移动开发 > 详细

unexpected nil window in _UIApplicationHandleEventFromQueueEvent

时间:2014-10-02 16:58:43      阅读:3647      评论:0      收藏:0      [点我收藏+]

标签:http   io   os   for   sp   div   c   on   cti   

 

 

Additional to B H answer. Also look this answer.

Got this issue when launching my landscape only app from portrait orientation (also the app shouldn‘t be presented in recently opened apps list, which can be seen by pressing Home button twice. Perhaps, iOS somehow caches the orientation and window size).

My code was

self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
[self.window makeKeyAndVisible];

I set W+H autoresizing mask for window, it didn‘t help me, because the window don‘t being resized on rotation, but the transform matrix is changed.

The solution is simple

self.window = [UIWindow new];
[self.window makeKeyAndVisible];
self.window.frame = [[UIScreen mainScreen] bounds];

So the frame is set AFTER the window get its orientation from root view controller.

unexpected nil window in _UIApplicationHandleEventFromQueueEvent

标签:http   io   os   for   sp   div   c   on   cti   

原文地址:http://www.cnblogs.com/spiderdzl/p/4004146.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!