标签:
链接地址:http://blog.sina.com.cn/s/blog_6123f9650101dmo7.html
1.修改工程名:直接选中工程名点一下,就像修改名称夹名称一样简单了。
if ([[[UIDevice currentDevice] systemVersion] floatValue] >= 6.0)
self.window.rootViewController = navigationCtrl;
else
[self.window addSubview:navigationCtrl.view];
3.支持iPhone5:添加Retina 4 launch image“Default-568h@2x.png”
图片尺寸:
Default.png 320x480
Default@2x.png 640x960
Default-568h@2x.png 640x1136
4.Icon新增:Icon-72@2x.png,Icon-Small-50@2x.png;
5.判断是否为iphone5
CGFloat screenWidth = [[UIScreen mainScreen] bounds].size.width;
CGFloat screenHeight = [[UIScreen mainScreen] bounds].size.height;
if ((screenWidth==568)||(screenHeight==568)) {
isiPhone5 = YES;
}
标签:
原文地址:http://www.cnblogs.com/wvqusrtg/p/4589620.html