Status bar and navigation bar issue in IOS7

前端 未结 11 1811
眼角桃花
眼角桃花 2020-11-22 10:10

I am migrating my application to iOS 7. For handing the status bar issue I have added this code

if([[[UIDevice currentDevice] systemVersion] floatValue] >         


        
11条回答
  •  囚心锁ツ
    2020-11-22 10:21

    just set the following code in viewWillAppear.

     if ([[[UIDevice currentDevice] systemVersion] floatValue]<= 7) {
        self.edgesForExtendedLayout = UIRectEdgeNone;
     }
    

提交回复
热议问题