sta*_*one 1 iphone ios ios6 iphone-5
我在App商店有一个应用程序,我需要为ios6和iphone5更新该应用程序.当已经提交到App商店时,更新exsting应用程序需要采取哪些步骤?
我在mac中安装了xcode4.5.如果我在iOS 6中构建应用程序,它是否会在iOS 5中得到支持?我应该如何制作支持iOS 5和iOS 6的应用程序?
编辑
public static bool IsTall
{
get {
return UIDevice.CurrentDevice.UserInterfaceIdiom
== UIUserInterfaceIdiom.Phone
&& UIScreen.MainScreen.Bounds.Height
* UIScreen.MainScreen.Scale >= 1136;
}
}
static UIImage tableViewBackgroundImage = null;
public static UIImage TableViewBackgroundImage
{
get
{
if (tableViewBackgroundImage == null)
tableViewBackgroundImage = IsTall
? UIImage.FromFile("Images/TableViewBackground-568h@2x.png")
: UIImage.FromFile("Images/TableViewBackground.png");
return tableViewBackgroundImage;
}
}
Run Code Online (Sandbox Code Playgroud)
我使用上面的代码来制作iphone 5的应用程序.但我知道在哪里放上面的代码.任何人都使用这个代码,请与我分享.
提前致谢.
5.0为支持iOS 5+设备.Default-568h@2x的启动图像添加图像.其余的应该"正常工作".
| 归档时间: |
|
| 查看次数: |
4734 次 |
| 最近记录: |