iOS 7 適配

在AppDelegate中加入如下的代碼:

if([[[UIDevicecurrentDevice]systemVersionfloatValue]>6.1)

{        if(ScreenHeight ==480){

            self.window.frame =CGRectMake(0,20,320460);

        }else if(ScreenHeight ==568){

            self.window.frame =CGRectMake(0,20,320548);

        }

    }

      

#pragma mark - iOS7&iOS6適配

- (UIStatusBarStyle)preferredStatusBarStyle

{

    returnUIStatusBarStyleLightContent;

}

- (BOOL)prefersStatusBarHidden

{

    return NO;

}


發佈了11 篇原創文章 · 獲贊 3 · 訪問量 5萬+
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章