Re: iOS 6.0 SDK UIApplicationInvalidInterfaceOrientation

2013-02-17 Thread Matt Neuburg
On Mon, 04 Feb 2013 00:36:28 -0500, "Mazzaroth M." said: >I am getting this error in a universal iOS 6.0 sdk app: >[snip] >2)_playerVC is a MPMoviePlayerViewController subclass My advice: Use MPMoviePlayerController instead, make your own view controller, don't worry, be happy. More work, but yo

Re: iOS 6.0 SDK UIApplicationInvalidInterfaceOrientation

2013-02-12 Thread Louis Romero
Aren't you misinterpreting what UIInterfaceOrientation*Mask* is? 2013/2/4 Mazzaroth M. > I am getting this error in a universal iOS 6.0 sdk app: > > > 2013-02-03 23:41:57.078 scrappling[20350:c07] *** Terminating app due to > uncaught exception 'UIApplicationInvalidInterfaceOrientation', reason:

Re: iOS 6.0 SDK UIApplicationInvalidInterfaceOrientation

2013-02-04 Thread Mazzaroth M.
Docs: UIInterfaceOrientationMaskLandscape The view controller supports both landscape-left and landscape-right interface orientation. Appears to be what I want.. Do you mean in the -supportedInterfaceOrientations or -preferredInterfaceOrientationForPresentation? Michael On Mon, Feb 4, 201

iOS 6.0 SDK UIApplicationInvalidInterfaceOrientation

2013-02-03 Thread Mazzaroth M.
I am getting this error in a universal iOS 6.0 sdk app: 2013-02-03 23:41:57.078 scrappling[20350:c07] *** Terminating app due to uncaught exception 'UIApplicationInvalidInterfaceOrientation', reason: 'preferredInterfaceOrientationForPresentation must return a supported interface orientation!' Th