获取UIWindow

简介: 获取UIWindow
1,UIWindow *window = [UIApplication sharedApplication].keyWindow;   // 获得根窗口
2.- (UIView *)rootView {    UIView *rootView = self;  while (rootView.superview) {    if ([rootView.superview isKindOfClass:[UIWindow class]]) {      break;    }    rootView = rootView.superview;  }  return rootView;}
相关文章
|
5月前
|
iOS开发 UED 容器
navigationController 的使用详解
navigationController 的使用详解
UINavigationController和UITabBarController合用。
UINavigationController和UITabBarController合用。
72 0
|
Swift
Swift - UIView,UILabel,UIButton,UIImageView
Swift - UIView,UILabel,UIButton,UIImageView
95 0
UITabBarController 获得selecdIndex
UITabBarController 获得selecdIndex
76 0