CCVideoPlayerを使用してビデオを再生します。ビデオが画面を終了すると、画面がちらつくことがあります。videoViewがアニメーションを終了したように見えます。
誰かがそれの何が悪いのか知っていますか?
- ( void ) moviePlaybackFinished
{
CCLOG(@ "moviePlaybackFinished" );
NSString * className = [PublicApi readSceneClassName];
id aClass = NSClassFromString(className);
if(aClass!=nil)
{
if([aClass respondsToSelector:@selector(moviePlaybackFinished: ResArr: Menu: MovieNum:)])
{
}
self.movieNum++;
}
- ( void ) movieStartsPlaying
{
CCLOG(@ "movieStartsPlaying" );
}
#ifdef __IPHONE_OS_VERSION_MAX_ALLOWED
// Updates orientation of CCVideoPlayer. Called from SharedSources/RootViewController.m
- ( void ) updateOrientationWithOrientation: (UIDeviceOrientation) newOrientation
{
CCLOG(@ "updateOrientationWithOrientation" );
[CCVideoPlayer updateOrientationWithOrientation:newOrientation ];
}
#endif