我有一个 UIWebView,其中有时里面有一个用于播放视频的 youtube 播放器。用户也可以全屏观看视频。但是问题是当用户全屏观看视频,然后旋转它时,它不会调用 willAnimateToInterfaceOrientation。所以我打算手动调用它。问题是我如何检查何时有人关闭了 youtube 视频?
问问题
140 次
1 回答
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
}
于 2012-04-25T23:48:15.753 回答