简体   繁体   中英

ios 8 device orientation landscape

my app's views are forced to portrait except one view (movie player) which is landscape. In the landscape view, I have :

- (BOOL)shouldAutorotate
{
    return YES;
}

- (BOOL)shouldAutorotateToInterfaceOrientation: (UIInterfaceOrientation)interfaceOrientation
{
    return UIInterfaceOrientationIsLandscape(interfaceOrientation);
}

- (NSUInteger)supportedInterfaceOrientations {

    return UIInterfaceOrientationMaskLandscape;
}

the device is in landscape but the view still in portrait mode : 在此处输入图片说明

(what you see in the simulator is what I can see in my real device)

Everything works fine for iOS prior to 8.0

Any idea?

Try to use

- (void)viewWillTransitionToSize:(CGSize)size withTransitionCoordinator:(id<UIViewControllerTransitionCoordinator>)coordinator

for iOS 8

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM