I use a non-depracated device orientation code that works perfectly for all iOS 7 simulator and devices. And for iOS 8 it works on iPad 2, iPhone 4s, iPhone 5s, iPhone 5. However, on iOS 8 it won't work on iPad Air, iPad Retina, iPhone 6+, iPhone 6.
-(NSUInteger)supportedInterfaceOrientations {
return (UIInterfaceOrientationMaskPortrait | UIInterfaceOrientationMaskPortraitUpsideDown);
}
Can Xcode 6.1 be the reason why certain code doesn't work and then that code would work on Xcode 6.2? (i've been told code works on Xcode 6.2)