启动 iPad 应用程序时,我可以在没有任何可能的情况下打开它,并且它可以毫无问题地显示一切正常,但我不知道为什么在播放电影后,然后尝试旋转我的 iPad 我的视图大小正在缩小规模并且显示错误 我一直在尝试 2 天但没有任何成功任何想法?有什么建议吗?提前非常感谢
你能看看下面的代码:
- (void) moviePlayBackDidFinish:(NSNotification*)notification
{
MPMoviePlayerController *player = [notification object];
self.isMoviePlaying =FALSE;
[[NSNotificationCenter defaultCenter]
removeObserver:self
name:MPMoviePlayerPlaybackDidFinishNotification
object:player];
if ([player respondsToSelector:@selector(setFullscreen:animated:)])
{
[player.view removeFromSuperview];
NSLog(@"played movie has been removed from the super view ");
}
}