how to get my UIWindow using UIApplication?

前端 未结 4 1890
半阙折子戏
半阙折子戏 2020-12-25 10:21

I have only one window and I tried

UIWindow* mWindow = [[UIApplication sharedApplication] keyWindow];

but this returned nil.

I also

4条回答
  •  失恋的感觉
    2020-12-25 10:57

    Easiest way is to get the window from the app delegate instead:

    UIWindow *keyWindow = [[[UIApplication sharedApplication] delegate] window];
    // Do something with the window now
    

提交回复
热议问题