Haven

Results 5 comments of Haven

你下载demo 然后用 github上面的命令 ------------------ 原始邮件 ------------------ 发件人: "JonYun"

你看Dome 下载下来 看看位置格式是否一致   我之前文件夹路径不对 ------------------ 原始邮件 ------------------ 发件人: "CatchZeng/Localizable.strings2Excel"

路径不对 看官方demo 发自我的iPhone ------------------ 原始邮件 ------------------ 发件人: Chason Tse ***@***.***> 发送时间: 2021年12月3日 16:15 收件人: CatchZeng/Localizable.strings2Excel ***@***.***> 抄送: Haven ***@***.***>, Author ***@***.***> 主题: 回复:[CatchZeng/Localizable.strings2Excel] 为啥为转换的是空文件 iOS 转Excel (#27) 我也是这种情况,请问你解决了吗? — You...

我前不久遇到过这个问题。在appdelegate.m中添加- (UIInterfaceOrientationMask)application:(UIApplication *)application supportedInterfaceOrientationsForWindow:(UIWindow *)window { ZFInterfaceOrientationMask orientationMask = [ZFLandscapeRotationManager supportedInterfaceOrientationsForWindow:window]; if (orientationMask != ZFInterfaceOrientationMaskUnknow) { return (UIInterfaceOrientationMask)orientationMask; } /// 这里是非播放器VC支持的方向 return UIInterfaceOrientationMaskPortrait; }方法,然后在播放器所在的vc中添加- (BOOL)shouldAutorotate { return NO; } -...