if([[[UIDevicecurrentDevice]systemVersion]floatValue]>=7.0) { // iOS7.0及以上版本系統適配 } if([UIScreen mainScreen].bounds.size.height == 568) { // iPhone 屏幕適配 }
能夠寫成宏定義放在pch文件中,spa
// 判斷是否爲iPhone5 #define iPhone5 ([UIScreen mainScreen].bounds.size.height == 568) // 判斷系統版本是否爲7.0 #define iOS7 ([[[UIDevice currentDevice]systemVersion]floatValue] >= 7.0)