2014年2月20日 星期四

快速判斷 4" / 3.5" @iOS


紀錄一下方便 C/P

把下列 Code 加入  projectname_prefix.pch 內

#define IS_FOUR_INCH     ([UIScreen mainScreen].bounds.size.height == 568)


之後在要使用的地方只要

if(IS_FOUR_INCH){
    
  //do something in 4" screen

}
else{

  //do something in 3.5" screen

}

沒有留言:

張貼留言