renzifeng / ZFPlayer

Support customization of any player SDK and control layer(支持定制任何播放器SDK和控制层)
MIT License
7.05k stars 1.75k forks source link

v4.1.1,不兼容xcode13.4.1运行iOS16,无法横屏 #1349

Closed sfandy126 closed 1 year ago

sfandy126 commented 1 year ago

1、ZFOrientationObserver.m 对象landscapeRotationManager初始化判断错误; 2、ZFLandscapeRotationManager_iOS16.m这个类中处理的逻辑不太对; 希望大佬更新下

sfandy126 commented 1 year ago

1、ZFOrientationObserver.m 对象landscapeRotationManager初始化判断错误; 2、ZFLandscapeRotationManager_iOS16.m这个类中处理的逻辑不太对; 希望大佬更新下

兼容xcode13.4.1 运行iOS16 if (!_landscapeRotationManager) { if (@available(iOS 16.0, *)) { _landscapeRotationManager = [[ZFLandscapeRotationManager_iOS16 alloc] init]; } else { _landscapeRotationManager = [[ZFLandscapeRotationManager_iOS15 alloc] init]; } }