ios8页面手写布局代码
时间:2014-11-19 15:24:13
收藏:0
阅读:271
AppDelegate:
self.window = UIWindow(frame: UIScreen.mainScreen().bounds)
self.window!.backgroundColor = UIColor.whiteColor()
self.window!.makeKeyAndVisible()
self.window!.rootViewController = CounterViewController()
application.registerUserNotificationSettings(UIUserNotificationSettings(forTypes:
UIUserNotificationType.Sound | UIUserNotificationType.Alert |
UIUserNotificationType.Badge, categories: nil
))
ViewController:
override func viewWillLayoutSubviews(){ super.viewWillLayoutSubviews()
...... }
原文:http://www.cnblogs.com/chuny/p/4108151.html
评论(0)