I have a application in the App store, I need to update that application for ios6 and iphone5. What are the steps to be taken to update the exsting app when it is already submitted to the App store ?
I have xcode4.5 installed in mac. If I build the application in iOS 6, will it be supported in iOS 5 ? How should I make a application that supports both iOS 5 and iOS 6 ?
EDIT
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;
}
}
i gopt the above code to make the application for iphone 5.but i idnt know where to put the above code.can anyone use this code,please share with me.
Thanks in advance.