如何作iOS7的簡單適配(還原iOS6的狀態欄和導航欄)

第一步:在plist裏增長2個內容:windows

View controller-based status bar appearance : NO
Status bar style : Opaque black style

第二步:在appdelegate裏讓windows下移20像素app

if ([[[UIDevice currentDevice] systemVersion] floatValue] > = 7) {
  self.window.frame = CGRectMake(0,20,self.window.frame.size.width,self.window.frame.size.height-20);
}
 
 
 
祝您愉快開心 ^_^
相關文章
相關標籤/搜索