0

我有一个 UIWebView,其中有时里面有一个用于播放视频的 youtube 播放器。用户也可以全屏观看视频。但是问题是当用户全屏观看视频,然后旋转它时,它不会调用 willAnimateToInterfaceOrientation。所以我打算手动调用它。问题是我如何检查何时有人关闭了 youtube 视频?

4

1 回答 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 回答