上一页 1 2 3 4 5 6 7 8 ··· 10 下一页
摘要: 猜想: 能否通过服务器下发动态库实现App动态更新? 要上App Store的话,答案是不能的~ 新建一个动态库 新建一个framwork,修改mach-O为动态库类型(Xcode13.2.1默认就是) 把需要公开的Headers头文件暴露出来即可 例子: #import "DynamicClass 阅读全文
posted @ 2022-05-09 19:11 CoderWGB 阅读(1048) 评论(0) 推荐(0) 编辑
摘要: 原因是系统移除了自带的python版本,而自己安装的python3又和系统存放的目录不同,需要ln -s 创建软链接来使用 先查看python3所在 which python3 # 打印 /usr/local/bin/python3 然后建立软连接 ln -s /usr/local/bin/pyth 阅读全文
posted @ 2022-04-26 19:41 CoderWGB 阅读(2180) 评论(0) 推荐(0) 编辑
摘要: ![](https://img2022.cnblogs.com/blog/797853/202207/797853-20220722212223600-1603598626.jpg) 接到一个跨应用录屏的需求,要求封装成`SDK`给到别的团队去使用,调研了一波录屏相关的实现,`iOS`目前唯一能实现 阅读全文
posted @ 2022-03-27 13:56 CoderWGB 阅读(548) 评论(0) 推荐(0) 编辑
摘要: 苹果官方文档 业界举例: ① 招行的后台运行时长选择列表 ② 概念画板的Licenses展示 ③ 搜狗输入法 ④ outlook默认邮箱 ⑤ 微博 Settings Bundle 实际上是Root.plist配置文件与NSUserDefault相关联的 使用之前需要先创建这样一个文件,target 阅读全文
posted @ 2022-03-21 22:48 CoderWGB 阅读(451) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2022-03-06 12:20 CoderWGB 阅读(5) 评论(0) 推荐(0) 编辑
摘要: ## 在线工具-获取iOS设备名称JSON数据 https://www.cnblogs.com/wgb1234/articles/17555311.html ![](https://img2022.cnblogs.com/blog/797853/202207/797853-2022072221254 阅读全文
posted @ 2022-02-24 20:38 CoderWGB 阅读(858) 评论(0) 推荐(0) 编辑
摘要: ```html URL编码与解码 编码🔽 解码🔼 ``` 阅读全文
posted @ 2022-02-12 12:21 CoderWGB 阅读(172) 评论(0) 推荐(0) 编辑
摘要: 参考 https://support.apple.com/zh-cn/guide/shortcuts/apda283236d7/5.0/ios/15.0 打开捷径 shortcuts:// 创建捷径 shortcuts://create-shortcut 打开指定捷径 shortcuts://ope 阅读全文
posted @ 2022-02-07 07:37 CoderWGB 阅读(761) 评论(0) 推荐(0) 编辑
摘要: ```html Base64编码与解码 编码🔽 解码🔼 文件转Base64,选择文件或把文件拖到蓝色方块区域内: 这例子🌰是采用CDN的方式访问github的json文件,经过验证,不存在跨域问题,其他api就不好说了 https://cdn.jsdelivr.net/gh/WangGuibi 阅读全文
posted @ 2022-02-03 19:32 CoderWGB 阅读(117) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2022-01-31 20:32 CoderWGB 阅读(2) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 ··· 10 下一页