ios access main window or view

前端 未结 4 1903
小蘑菇
小蘑菇 2021-02-07 05:12

I would like to know if there is a simple way to access the main window or view in IOS. Something similar to:

[UIScreen mainScreen]

Thank you.<

4条回答
  •  死守一世寂寞
    2021-02-07 05:22

    If you have a pointer to some subview in the window, you can easily access its window:

    UIWindow *window = mySubview.window;
    

提交回复
热议问题