摘要: 今天在网上看到一篇关于iOS7状态栏的文章,粘贴了过来分享给大家,希望对大家有所帮助。。。。。 标题:Developer’s Guide to the iOS 7 Status BarAmong the many visual changes in iOS 7, one of the most noticeable as a developer is the new status bar.In previous versions of iOS, the status bar was untouchable other than color adjustments. iOS 7 makes th 阅读全文
posted @ 2013-11-04 18:10 zcb1989 阅读(1096) 评论(0) 推荐(0) 编辑
摘要: 找了很久终于找到怎么解决了。。。。分享给大家。。。第一步:在Plist里面添加 UIViewControllerBasedStatusBarAppearance 设置为 :NO 第二步:在入口类中写:[[UIApplication sharedApplication] setStatusBarStyle:UIStatusBarStyleLightContent]; 阅读全文
posted @ 2013-11-04 18:04 zcb1989 阅读(1674) 评论(0) 推荐(0) 编辑
摘要: 希望对大家有用。。。。。。 if ([[[UIDevice currentDevice] systemVersion] floatValue] >= 7){ [application setStatusBarStyle:UIStatusBarStyleLightContent]; self.window.clipsToBounds =YES; self.window.frame = CGRectMake(0,20,self.window.frame.size.width,self.window.frame.size.height-20);} 阅读全文
posted @ 2013-11-04 18:02 zcb1989 阅读(209) 评论(0) 推荐(0) 编辑