摘要: 问题:The Legacy Build System will be removed in a future release. You can configure the selected build system and this deprecation message in File > Wor 阅读全文
posted @ 2022-02-15 11:28 yoowei 阅读(1070) 评论(0) 推荐(0) 编辑
摘要: 转自:https://blog.csdn.net/h5q8n2e7/article/details/46919579 在 Mac 上用 SourceTree 克隆 svn 的时候, 出现了 warning: templates not found /usr/local/git/share/git-c 阅读全文
posted @ 2021-09-06 16:56 yoowei 阅读(822) 评论(0) 推荐(0) 编辑
摘要: 1、描述文件安装失败 报错:Please ensure the provisioning profile is configured for this device. If not, please try to generate 解决方案: In Xcode, 打开 Window > Devices 阅读全文
posted @ 2021-07-30 10:59 yoowei 阅读(2388) 评论(0) 推荐(0) 编辑
摘要: 问题:真机模拟器库无法合并,报错:have the same architectures (arm64) and can't be in the same fat output file 分析:Xcode12之前:编译模拟器静态库支持i386 x86_64两架构;编译真机静态库支持armv7 arm 阅读全文
posted @ 2021-02-25 17:03 yoowei 阅读(2463) 评论(0) 推荐(0) 编辑
摘要: 问题描述:项目在Xcode 11中运行的很好,在Xcode 12中运行报 dyld`__abort_with_payload: 日志打印:Metal Shader Validation is unsupported for iOS Deployment Version 9.0. Minimum de 阅读全文
posted @ 2020-09-11 17:56 yoowei 阅读(2806) 评论(0) 推荐(0) 编辑
摘要: iOS UITextField实时监听获取输入内容,中文状态去除预输入拼音字符 实时监听textField输入的内容不难,难的是中文输入的时候,中文的拼音也会跟进去。往往是一堆字符,还不断的增加。。。。 解决方法: - (void)viewDidLoad { [super viewDidLoad]; 阅读全文
posted @ 2019-09-11 11:33 yoowei 阅读(2901) 评论(0) 推荐(0) 编辑
摘要: 1、原本可以运行的工程,突然间就报'vector' file not found错误,其实是引用vector的类(.mm文件)对应的.h文件被引用了,而引用该.h文件的文件是以.m结尾的,所以这个问题是比较隐蔽的,只需要将该.m文件改成以.mm结尾就可以了。 2、打包慢,让人发狂!!! 所以我们尝试 阅读全文
posted @ 2019-04-02 13:38 yoowei 阅读(2469) 评论(0) 推荐(0) 编辑
摘要: 问题描述:在Android中,视频可以正常在H5页面局部播放,iOS中则自动切换至全屏模式. 查看资料得以解决,20190301记录下来。 解决方法:IOS10及以后,在 video标签页中只包含 webkit-playsinline 是不够的,需要再增加 playsinline. H5端重点代码: 阅读全文
posted @ 2019-03-01 14:17 yoowei 阅读(9105) 评论(0) 推荐(1) 编辑
摘要: sublime text3 可以使用 Package Control 安装其他插件,来提高开发效率。所以我们先要知道Package Control是怎么安装的。 1、安装Package Control Package Control官网安装:https://packagecontrol.io/ins 阅读全文
posted @ 2019-02-27 13:39 yoowei 阅读(4330) 评论(0) 推荐(0) 编辑
摘要: 1、import ... form...替代 require() //不接收对象 require:require('s.css'); //(es5) improt 's.css' //(es6) //接收对象 var o = require('s.js'); //es(5) import o for 阅读全文
posted @ 2019-02-25 17:21 yoowei 阅读(5242) 评论(0) 推荐(0) 编辑