我的应用在 iOS6.0 中运行时遇到问题。它在 iOS 5.1.1 及更低版本上运行良好,但在 6.0 显示上运行良好exc_bad_access
。
请告诉我为什么。
-(void)endAniView{
if (moviePlayer!=nil) {
[moviePlayer.moviePlayer stop];
[self removeFromSuperview];
}
}
当用户触摸按钮时调用此方法。以下是我在 iOS6 上看到的错误,但在以前的 iOS 版本中没有:
2012-09-18 16:13:22.410 KiKiSong[992:907] [MPAVController] Autoplay: Disabling autoplay for pause
2012-09-18 16:13:22.411 KiKiSong[992:907] [MPAVController] Autoplay: Disabling autoplay
2012-09-18 16:13:22.450 KiKiSong[992:907] [MPAVController] Autoplay: Skipping autoplay, disabled (for current item: 1, on player: 0)
请帮我。
谢谢