How to submit an app that uses an iOS6 feature?
Posted
by
Darren
on Stack Overflow
See other posts from Stack Overflow
or by Darren
Published on 2012-08-27T21:30:00Z
Indexed on
2012/08/27
21:38 UTC
Read the original article
Hit count: 168
I'm ready to submit my app to apple, however it says on the iOS Dev portal that xCode 4.5 cannot be used to submit apps yet, use the public release. xCode 4.4 wont compile my project because I am using
-(NSUInteger)supportedInterfaceOrientations
{
return UIInterfaceOrientationMaskPortrait;
}
which is the new way to support orientation changes.
It seems strange with iOS6 round the corner that I cannot submit this. Must I remove this and submit, then resubmit to support iOS6 when they allow it, or has anyone successfully submitted from xCode 4.5 beta 4?
Thanks
© Stack Overflow or respective owner