iOS   发布时间:2022-03-30  发布网站:大佬教程  code.js-code.com
大佬教程收集整理的这篇文章主要介绍了在iOS 8中输入视频时旋转大佬教程大佬觉得挺不错的,现在分享给大家,也给大家做个参考。
我在iOS 7中实现了这个代码并且工作得很好,但是在iOS 8中它不起作用

[[NsnotificationCenter defaultCenter] addObserver:self SELEctor:@SELEctor(youTubeStarted:) name:@"UIMoviePlayerControllerDidEnterFullscreenNotification" object:nil];
[[NsnotificationCenter defaultCenter] addObserver:self SELEctor:@SELEctor(youTubeFinished:) name:@"UIMoviePlayerControllerWillExitFullscreenNotification" object:nil];

-(void)youTubeStarted{
    AppDelegate *appDelegate = (AppDelegate*)[[UIApplication sharedApplication] delegate];
    appDelegate.fullScreenVideoIsPlaying = YES;
}

-(void)youTubeFinished{
    AppDelegate *appDelegate = (AppDelegate*)[[UIApplication sharedApplication] delegate];
    appDelegate.fullScreenVideoIsPlaying = NO;
}

我已经尝试将uIMoviePlayerControllerDidEnterFullscreenNotification更改为MPMoviePlayerWillEnterFullscreenNotification.没有运气

还有别的办法吗?

编辑

看看我在iOS 8.1中使用NorthBlast的答案会发生什么.它与iOS 8.0和iOS完美配合. iOS 8.0.2

@H_944_18@解决方法
好的,这是一个解决方案,我现在正在使用..我先检查哪个操作系统正在运行该设备然后使用适当的NsnotificationCenter
本图文内容来源于网友网络收集整理提供,作为学习参使用,版权属于原作者。

大佬总结

以上是大佬教程为你收集整理的在iOS 8中输入视频时旋转全部内容,希望文章能够帮你解决在iOS 8中输入视频时旋转所遇到的程序开发问题。

如果觉得大佬教程网站内容还不错,欢迎将大佬教程推荐给程序员好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。