如何做iOS7的简单适配(还原iOS6的状态栏和导航栏)
摘要:
第一步:在plist里增加2个内容:View controller-based status bar appearance : NOStatus bar style : Opaque black style第二步:在appdelegate里让windows下移20像素if ([[[UIDevice currentDevice] systemVersion] floatValue] > = 7) { self.window.frame = CGRectMake(0,20,self.window.frame.size.width,self.window.frame.size.height-2 阅读全文
posted @ 2013-11-16 10:53 lonelysoul 阅读(196) 评论(0) 推荐(0) 编辑