You should remember you turn off NSZombies before submitting.
IOS App Store Submission Checklist - anything else to add?
51–60 of 76 posts
Re: IOS App Store Submission Checklist - anything else to add?
#52> Lite versions must not prompt (up-sell) the full or paid version That one I see quite a lot. Example: Cut The Rope Holiday Gift (which is free) proposes me to get CTR Original and CTR Experiments on the last tab.
Re: IOS App Store Submission Checklist - anything else to add?
#53Surprised to see "does not leak memory" is not on the list. That's a biggie.
I don't think Apple reject apps that leak "a bit". There's this older discussion on SO: http://stackoverflow.com/questions/1136511/does-apple-reject... . If you leak fast your app is unlikely to "not crash" and "remain responsive".
So perhaps what I said should be amended to say: "Your app does not leak memory, at least because of any code you wrote".
Re: IOS App Store Submission Checklist - anything else to add?
#54Is that still true? That is, they will still reject a new e-book reader because it can read the Kama Sutra, and they would still reject an app that allowed the user to navigate to a porn site? I have the Wikipedia app installed, which I think would violate those terms.
Re: IOS App Store Submission Checklist - anything else to add?
#55Earlier quoted context omitted.
I don't think Apple reject apps that leak "a bit". There's this older discussion on SO: http://stackoverflow.com/questions/1136511/does-apple-reject... . If you leak fast your app is unlikely to "not crash" and "remain responsive".
Well, I suppose it's true -- I have submitted apps to Apple that got approved that leaked memory. But the leaks were coming from one of their frameworks (WebKit). So perhaps what I said should be amended to say: "Your app does not leak memory, at least because of any code you wrote".
Re: IOS App Store Submission Checklist - anything else to add?
#56I've got one you can add: iPad applications don't have to support all four orientations. However, whichever orientation you do support (in our instance, portrait) you must support the top-up and bottom-up variations unless some special circumstance warrants only supporting one or the other. Just had a submission rejected earlier this week for this reason. FYI, here is the response we received from Apple: 10.1 We foun…
Re: IOS App Store Submission Checklist - anything else to add?
#57Earlier quoted context omitted.
Also maybe consider dropping: > App state is saved when stopping the app and restored on next start I believe you get this for 'free' with IOS 4 and greater, as the app now never stops, it just suspends to the background when you switch between apps.
Not if the device runs out of memory or on older iOSes. You should always address this case.
Re: IOS App Store Submission Checklist - anything else to add?
#58With regards to the HIG: At a recent Apple iOS Tech Talk the engineer giving the session mentioned that breaking the HIG wasn't expressly forbidden, but that you needed to "know the rules in order to break them". Break them, if it's better than sticking to them.
Specifically, section 10.1 of the App Store review guidelines states:
> Apps must comply with all terms and conditions explained in the Apple iOS Human Interface Guidelines
It is very much the case that you can often get away with it (see for example all the apps with splash screens), but it is "expressly forbidden".
Re: IOS App Store Submission Checklist - anything else to add?
#59Re: IOS App Store Submission Checklist - anything else to add?
#60You should remember you turn off NSZombies before submitting.
Thanks. Updated.