iPad rotation bug when using MPMoviePlayerViewController

前端 未结 2 1123
迷失自我
迷失自我 2021-02-03 11:15

Issue summary

Changing the orientation of an iPad device or simulator while playing a video using MPMoviePlayerViewController results in an inconsistent rotation state

相关标签:
2条回答
  • Successful response from Apple Developer Technical Support!

    This is a known bug and a we're received a number of duplicate bug reports and so iOS engineering is aware of the issue and we do have a temporary workaround as suggested by iOS engineering.

    You will need to implement this in the view controller which presents the movie player.

    - (void)didRotateFromInterfaceOrientation:(UIInterfaceOrientation)fromInterfaceOrientation {
       [super didRotateFromInterfaceOrientation:fromInterfaceOrientation];
       [self performSelector:@selector(fixStatusBar) withObject:nil afterDelay:0];
    }
    
    - (void)fixStatusBar {
       [[UIApplication sharedApplication] setStatusBarOrientation:[self interfaceOrientation] animated:NO];
    }
    

    While this is somewhat ugly, it should fix the issue for now. It would be recommended to remove this code once the bug is fixed in the system.

    This took care of the issue completely for me, and you can revisit http://github.com/adamalex/FullScreenMovie for the code with the fix applied.

    0 讨论(0)
  • 2021-02-03 12:03

    This also solves an iPhone/iPodTouch rotation issue that I was struggling with. I am developing a universal app in which each view displays a different image depending on whether the device is in portrait or landscape orientation. Buttons are used to navigate between views.

    If the app is running on the device and a portrait view is rotated to landscape, my image switching takes place. If the device is then placed flat on a table top and the button is tapped to display the next view, the view appears in landscape but shows the portrait image instead. I solved the problem by forcing a portrait view to appear by detecting for face up and down, but Apple's code solved this problem (as well as the similar movie problem I was also experiencing).

    Many thanks for reporting the bug - I assumed it was just my bad coding...

    0 讨论(0)
提交回复
热议问题