欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

ios 5 才执行的代码

程序员文章站 2022-07-12 18:55:08
...

设置navigationBar背景在ios5有了官方支持

 

#if __IPHONE_OS_VERSION_MAX_ALLOWED >= 50000
    if ([self.navigationController.navigationBar respondsToSelector:@selector(setBackgroundImage:forBarMetrics:)]){
        NSLog(@"111");
            [self.navigationController.navigationBar setBackgroundImage:[UIImage imageNamed:@"navi.png"] forBarMetrics:UIBarMetricsDefault];
    }
#endif 

 

 

 

<!--?xml version="1.0" encoding="UTF-8" standalone="no"?-->

if ([[[UIDevice currentDevice] systemVersion] floatValue] >= 5.0) {

        CLog(@"ios5");


    }else {

        CLog(@"ios4");


    }