跳到主要内容

Notification 通知栏消息

通知

requestNotificationAuthorization 请求通知栏权限

提示

新安装脚本会出弹窗,需要手动授权

参数名必选类型说明
UIImageUIImageUIImage格式的图片数据
//申请通知栏权限,脚本开始执行一次,新安装脚本会出弹窗,需要手动授权
ll.notification.requestNotificationAuthorization()

//发送后台通知
ll.notification.sendLocalNotification("http://bbs.laoleng.vip", "老冷编程学院", "laolengSwiftPlug")

返回值类型说明

sendLocalNotification 发送后台通知栏消息

提示

只有脚本在后台时才能使用

参数名必选类型说明
msgstring通知栏内容
titlestring通知栏标题,可空,不填默认为脚本名
requestIdentifierstring请求id,可空,不修改则默认laolengSwiftPlug,覆盖原信息
//申请通知栏权限,脚本开始执行一次,新安装脚本会出弹窗,需要手动授权
ll.notification.requestNotificationAuthorization()

//普通方法
ll.notification.sendLocalNotification("http://bbs.laoleng.vip")
//自定义title标题
ll.notification.sendLocalNotification("http://bbs.laoleng.vip", "老冷编程学院")
//自定义id,方式消息被新的覆盖
ll.notification.sendLocalNotification("http://bbs.laoleng.vip", "老冷编程学院", "laolengSwiftPlug")

返回值类型说明