
#####ViewController statusbar直接兼容iOS6和iOS7
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
|
-(UIStatusBarStyle)preferredStatusBarStyle { return UIStatusBarStyleLightContent; }
-(void)viewWillLayoutSubviews{ if ([[[UIDevice currentDevice] systemVersion] floatValue] >= 7) { self.view.clipsToBounds = YES; CGRect screenRect = [[UIScreen mainScreen] bounds]; CGFloat screenHeight = screenRect.size.height; self.view.frame = CGRectMake(0, 20, self.view.frame.size.width,screenHeight-20); self.view.bounds = CGRectMake(0, 0, self.view.frame.size.width, self.view.frame.size.height); } }
|
近期评论