smelloftime
smelloftime
遇到同样的问题,在iOS16系统上出现横屏瞬间又返回竖屏,没有用到YYTextView。项目为swift为主,部分OC混编。 更新4.1.4后问题依旧存在,而且退出全屏后无法响应点击事件。 解决方案: 1、处理退出全屏后无法响应点击事件 方法1: ``` playerView.orientationDidChanged = { aPlayer, isFullScreen in /// 退出全屏 if !isFullScreen { for window in UIApplication.shared.windows { if window is ZFLandscapeWindow { // 手动隐藏 window.isHidden...
> ``` > func application(_ application: UIApplication, supportedInterfaceOrientationsFor window: UIWindow?) -> UIInterfaceOrientationMask { > if window is ZFLandscapeWindow { > return [.landscape] > } > return .portrait > } >...
I also encountered the same problem. Solve it by the following way: comment out ObjectMapper from pod.file and import it directly into the project. Compilation is successful!
I also encountered the same problem. Solve it by the following way: comment out ObjectMapper from pod.file and import it directly into the project. Compilation is successful!
I also encountered the same problem. Solve it by the following way: comment out ObjectMapper from pod.file and import it directly into the project. Compilation is successful!
你可以使用老版本VSCode就可以,Mac端目前测试最新能用的就是1.78 ╮(╯▽╰)╭ https://code.visualstudio.com/updates/v1_78