xcode4.5.1、iphone5、ios6 使用记录

转载自:http://blog.sina.com.cn/s/blog_6123f9650101dmo7.html

感谢 angellixf 分享

1.修改工程名:直接选中工程名点一下,就像修改名称夹名称一样简单了。



2.导入旧工程解决xcode4.5以后模拟器屏幕不旋转的问题

if ([[[UIDevice currentDevice] systemVersion] floatValue] >= 6.0)

    self.window.rootViewController = navigationCtrl;

else

    [self.window addSubview:navigationCtrl.view];



3.支持iPhone5:添加Retina 4 launch image“[email protected]

图片尺寸:

 

  Default.png   320x480

     [email protected]  640x960

     [email protected]  640x1136


4.Icon新增:[email protected],[email protected];



5.判断是否为iphone5

 

CGFloat screenWidth = [[UIScreen mainScreenbounds].size.width;

        CGFloat screenHeight = [[UIScreen mainScreenbounds].size.height;

        if ((screenWidth==568)||(screenHeight==568)) {

            isiPhone5 = YES;

        }


6.iphone5宽高:320*568
CGFloat screenWidth = [[UIScreen mainScreen] bounds].size.width;
  CGFloat screenHeight = [[UIScreen mainScreen] bounds].size.height;


7. 打开iphone5模拟器: 硬件-》设备-》iPhone(Retina 4-inch) 

你可能感兴趣的:(xcode4.5.1、iphone5、ios6 使用记录)