方法一: - (void)exitApplication { AppDelegate *app = [UIApplication sharedApplication].delegate; UIWindow *window = app.window; [UIView animateWithDurati ...
分类:
移动开发 时间:
2016-06-22 15:32:34
阅读次数:
286
1.新建UIWindow 程序崩溃 报无根控制器错误 Xcode7环境下,新建UIWindow需添加rootViewController 2.新建UIWindow后 statusBar消失 Info.plist文件 新增项View controller-based status bar appear ...
iOS中加载的时候会先执行main函数 根据main函数的参数加载UIApplication->AppDelegate->UIWindow->UIViewController->superView->subViews关系为:UIApplication.keyWindow.rootViewContro ...
分类:
移动开发 时间:
2016-06-12 01:43:16
阅读次数:
196
self.window = UIWindow(frame:UIScreen.mainScreen().bounds) let rootVC : RootViewController = RootViewController() let navi = UINavigationController(ro ...
分类:
移动开发 时间:
2016-06-01 21:20:38
阅读次数:
126
这里主要解析 UIAlertView 的几个关键功能的实现: 随着设备屏幕的旋转而旋转; Alert弹出框,使用UIWindow来实现,就是说,不用依赖于当前显示在最前面的UIView。 实现源码参考: http://git.oschina.net/shede333/BMAlertHud 使用UIW ...
分类:
移动开发 时间:
2016-05-31 18:34:56
阅读次数:
223
UIWindow.h文件 1、 IOS /Applications//Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS6.1.sdk/System/Library/Frameworks/U ...
当收到内存警告的时候,应用程序会将警告一级一级往下传递,传递顺序是UIApplication->UIWindow->rootViewController(如果有子控制器)->childViewControllers。 当控制器接收到警告之后,就会调用didReceiveMemoryWarning方法 ...
分类:
其他好文 时间:
2016-05-29 23:04:46
阅读次数:
228
1 #pragma mark - 获取当前屏幕显示的viewcontroller 2 - (UIViewController *)getCurrentVC 3 { 4 UIViewController *result = nil; 5 6 UIWindow * window = [[UIApplic ...
分类:
其他好文 时间:
2016-05-22 18:09:32
阅读次数:
195
目录 1.\0 导致JSON无法解析的问题 2.Xcode 7.2.1中运行Xcode 5中的Empty工程导致崩溃 http://stackoverflow.com/questions/32323506/ios9-custom-uiwindow-makes-status-bar-disappear ...
分类:
移动开发 时间:
2016-05-21 15:50:32
阅读次数:
184