会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
CoderWGB
Stay hungry, stay foolish. Talk is cheap, show me the code.
博客园
首页
新随笔
联系
订阅
管理
上一页
1
2
3
4
5
6
···
11
下一页
2023年12月15日
Vue3配置(自用)
该文被密码保护。
阅读全文
posted @ 2023-12-15 20:59 CoderWGB
阅读(0)
评论(0)
推荐(0)
2023年8月24日
Xcode区分真机和模拟器执行不同的shell脚本
摘要: ```bash if [ "$PLATFORM_NAME" = "iphonesimulator" ] ; then echo "模拟器运行" else echo "真机运行" fi ```
阅读全文
posted @ 2023-08-24 23:20 CoderWGB
阅读(49)
评论(0)
推荐(0)
2023年7月13日
iOS锁屏事件监听
摘要: ## 私有API (慎用 不上appstore的话就可以用) ```objc //AppDelegate.m //监听锁屏事件 #define kNotificationLock CFSTR("com.apple.springboard.lockcomplete") //监听屏幕状态变化事件 #de
阅读全文
posted @ 2023-07-13 21:33 CoderWGB
阅读(832)
评论(0)
推荐(0)
2023年6月16日
使用油猴替换github下载地址
摘要: 举例: 通过油猴下载 `https://www.cocoacontrols.com/`的 `GitHub`代码 ```js // ==UserScript== // @name cocoacontrols.com下载代码 // @namespace http://tampermonkey.net/
阅读全文
posted @ 2023-06-16 20:36 CoderWGB
阅读(220)
评论(0)
推荐(0)
2023年6月3日
从Replaykit屏幕共享到FLV格式封装的调研
该文被密码保护。
阅读全文
posted @ 2023-06-03 12:28 CoderWGB
阅读(0)
评论(0)
推荐(0)
2023年5月30日
pb文件本地pod管理
摘要: ```ruby Pod::Spec.new do |s| s.name = 'AKProtoOC' s.version = '1.0.0' s.license = 'MIT' s.summary = 'PB文件本地库管理' s.homepage = 'https://xxxxxx' s.author
阅读全文
posted @ 2023-05-30 22:15 CoderWGB
阅读(38)
评论(0)
推荐(0)
2023年5月25日
使用Node搭建一个本地的WebSocket服务
摘要: 首先创建一个目录,cd到目录下, npm init -y 一路回车, 安装一个插件 npm i websocket 建一个server.js文件 const WebSocketServer = require('websocket').server const http = require('htt
阅读全文
posted @ 2023-05-25 20:11 CoderWGB
阅读(445)
评论(0)
推荐(0)
2023年5月4日
Mac工作流之图片压缩
摘要:  需要安装命令行插件 `pngquant` `jpegoptim` `gifsicle` ```python impor
阅读全文
posted @ 2023-05-04 21:42 CoderWGB
阅读(60)
评论(0)
推荐(0)
Mac工作流之视频压缩(mov => mp4)
摘要:  shell脚本如下: 需要安装`ffmpeg`命令行工具 ```bash PATH=$PATH:/usr/local
阅读全文
posted @ 2023-05-04 21:35 CoderWGB
阅读(128)
评论(0)
推荐(0)
Mac工作流之选择IPA文件上传到蒲公英
摘要:  shell脚本如下: ```bash if [[ -n "${1}" ]]; then ipaName=${1##*
阅读全文
posted @ 2023-05-04 21:27 CoderWGB
阅读(61)
评论(0)
推荐(0)
上一页
1
2
3
4
5
6
···
11
下一页
公告