1.环境 xcode 11.4
2.实操
2.1 启动模拟器
2.2命令行触发模拟器推送功能
xcrun simctl list devices | grep Booted
2.3 设置推送内容
2.3.1编辑.apns文件,拖到模拟器,就可以了
{ "Simulator Target Bundle": "com.liuwm.chudaoxing", "aps":{ "alert":{ "title":"测试", "subtitle":"远程推送", "body":"这是一条从远处而来的通知" }, "sound":"default", "badge":1 } }
2.3.2 使用命令行
xcrun simctl push booted developer.yf.TestUIKit /Users/yangfan/Desktop/playload.json
json内容和上面的.apns文件类似,只是不需要设置bundle
来源:oschina
链接:https://my.oschina.net/u/3697347/blog/4287369