English 中文(简体)
submit an ios app using ios5 OS and ios5 sdk
原标题:

I m wondering if I can install IOS 5 and the IOS 5 SDK and still be able to develop and submit apps to Apple? Or once I install IOS 5 I m forced to install the IOS5 SDK (from what I understand I can t test my applications using a stable 4.3 SDK when running my iDevice with new IO 5)

So am I able to develop my applications using IOS5 + IOS5 SDK and can I submit my applications to apple or will I need to wait for an official release of the stable version of IOS5?

最佳回答

You can install several Xcode versions next to each other and thus use the non-beta for submitting to the AppStore. Actually I recommend to always install the Xcode betas somewhere else in case you run into issues. For example, the Xcode 4.0 betas sometimes had so many crashes that it was PIA to use them. Going back to an older version isn t an issue if you still have it around.

Also, Apple doesn t care (or know) which iOS you re using on your device, they only care against which SDK you ve linked.

问题回答

No-one currently using iOS5 can talk about it without breaking the NDA that they agreed to prior to downloading the new SDK. I suggest you read the release notes and other associated documentation before proceeding.

Having said that, usually the best strategy with beta releases is to install the SDK along-side the current, production version. Obviously you can t do this with your iOS device, but you shouldn t be installing a beta on your primary device anyway.

As far as I can tell - you can install iOS 5 with Xcode 4.2 and still submit applications to apple. However you will only be able to submit applications linked against version 4.3 of the SDK, NOT 5.

You will only be able to submit app s linked against version 5 once it is released stable.





相关问题
List Contents of Directory in a UITableView

I am trying to list the contents of Ringtones directory in a TableView, however, I am only getting the last file in the directory in ALL cells, instead of file per cell. This is my code: - (...

iPhone NSUserDefaults persistance difficulty

In my app i have a bunch of data i store in the NSUserdefaults. This information consists of an NSObject (Object1) with NSStrings and NSNumbers and also 2 instances of yet another object (Object2). ...

Writing a masked image to disk as a PNG file

Basically I m downloading images off of a webserver and then caching them to the disk, but before I do so I want to mask them. I m using the masking code everyone seems to point at which can be found ...

Resize UIImage with aspect ratio?

I m using this code to resize an image on the iPhone: CGRect screenRect = CGRectMake(0, 0, 320.0, 480.0); UIGraphicsBeginImageContext(screenRect.size); [value drawInRect:screenRect blendMode:...

Allowing interaction with a UIView under another UIView

Is there a simple way of allowing interaction with a button in a UIView that lies under another UIView - where there are no actual objects from the top UIView on top of the button? For instance, ...

热门标签