[MonoTouch] rotations have stopped working on the devices but work in the simulator

2012-09-25 Thread Alex White
Hi all, My rotations have stopped working on the iPad they still work on in the simulator. I don't have the rotation lock on and other apps are rotating fine. I have used this blog to try and work out how to do things http://yusinto.blogspot.co.uk/2012/08/ios-6-auto-rotate-and-orientation.html

Re: [MonoTouch] rotations have stopped working on the devices but work in the simulator

2012-09-25 Thread Rolf Bjarne Kvinge
Hi, On Tue, Sep 25, 2012 at 1:06 PM, Alex White wrote: > Hi all, > > My rotations have stopped working on the iPad they still work on in the > simulator. I don't have the rotation lock on and other apps are rotating > fine. > > I have used this blog to try and work out how to do things > > > htt

Re: [MonoTouch] rotations have stopped working on the devices but work in the simulator

2012-09-26 Thread Alex White
Hi Rolf, thanks for the reply, I now have public override UIInterfaceOrientationMask GetSupportedInterfaceOrientations (UIApplication application, UIWindow forWindow) { return UIInterfaceOrientationMask.All; } in the AppD

Re: [MonoTouch] rotations have stopped working on the devices but work in the simulator

2012-09-26 Thread Rolf Bjarne Kvinge
Hi, On Wed, Sep 26, 2012 at 2:51 PM, Alex White wrote: > Hi Rolf, > > thanks for the reply, I now have > > public override UIInterfaceOrientationMask > GetSupportedInterfaceOrientations (UIApplication application, UIWindow > forWindow) > { > return UIInterfaceOrientationMask.All; > } > > in the

Re: [MonoTouch] rotations have stopped working on the devices but work in the simulator

2012-09-27 Thread Alex White
Hi Yes that works, I have gone right through the plist.info file to see if there are any major differences between the new and old project and I cannot see anything. I think something bad has happened to my project as I was not able to debug on the device until I wrote the small demo project

Re: [MonoTouch] rotations have stopped working on the devices but work in the simulator

2012-09-27 Thread Rolf Bjarne Kvinge
Hi, If you zip up your project I can have a quick look to see if there is something strange somewhere. Rolf On Thu, Sep 27, 2012 at 1:30 PM, Alex White wrote: > Hi > > Yes that works, I have gone right through the plist.info file to see if > there are any major differences between the new and

Re: [MonoTouch] rotations have stopped working on the devices but work in the simulator

2012-10-30 Thread Brett Spurrier
I'm having the exact same issue, and I am having the worst time solving it. In my AppDelegate class, I have the code: public override UIInterfaceOrientationMask GetSupportedInterfaceOrientations (UIApplication application, UIWindow forWindow) { return UIInterfaceOrientationMask.All; } And in

Re: [MonoTouch] rotations have stopped working on the devices but work in the simulator

2012-10-30 Thread Alex White
I had this problem a while back, Rolf found the issue for me, I was using a tab controller and one of my root controllers off the tab controller did not override the right stuff, so in essence you must override all the right methods/events on all root controllers for it to work. ATB Alex On 30

Re: [MonoTouch] rotations have stopped working on the devices but work in the simulator

2012-10-30 Thread Brett Spurrier
Thanks for the info! I'm just getting through the Apple docs that talk about this right now: http://developer.apple.com/library/ios/#releasenotes/General/RN-iOSSDK-6_0/_index.html So it turned out to be an Apple change in iOS 6 as versus Monotouch. Thanks for the pointer! -Brett On Tue, Oct 30,

Re: [MonoTouch] rotations have stopped working on the devices but work in the simulator

2012-10-30 Thread Alex White
The quickest way to find out is to rem out all but one controller and see if it works then work your way through the controllers un-remming them and testing. Yes this problem only started for me with IOS6. good luck with it, I was going round in circles for a good while with this problem. ATB