iPhone 屏幕適配判斷 和 iOS系統版本判斷

iPhone 屏幕適配判斷 和 iOS系統版本判斷
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)
相關文章
相關標籤/搜索