Status bar and navigation bar issue in IOS7

前端 未结 11 1962
眼角桃花
眼角桃花 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:13

    #define _kisiOS7 ([[[UIDevice currentDevice] systemVersion] floatValue] >= 7.0)
    
     if (_kisiOS7)
        {
            [[UINavigationBar appearance] setBarTintColor:_kColorFromHEX(@"#011C47")];
        }
        else
        {
            [[UINavigationBar appearance] setBackgroundColor:_kColorFromHEX(@"#011C47")];
            [[UINavigationBar appearance] setTintColor:_kColorFromHEX(@"#011C47")];
        }
    

提交回复
热议问题