我有一个UIWebView,其中有时它内部有一个视频的youtube播放器。用户也可以全屏查看视频。然而问题是,当用户全屏观看视频,然后旋转它时,它不会调用willAnimateToInterfaceOrientation。所以我打算手动调用它。问题是,如果有人解散了YouTube视频,我该如何查看?
答案 0 :(得分:0)
尝试在UIDeviceOrientationDidChangeNotification
viewDidLoad
[[NSNotificationCenter defaultCenter] addObserver:self
selector:@selector(didRotate:)
name:@"UIDeviceOrientationDidChangeNotification" object:nil];
- (void) didRotate:(NSNotification *)notification{
UIDeviceOrientation orientation = [[UIDevice currentDevice] orientation];
//Handle rotation
}