wwdc2016-session707 Notifications

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了wwdc2016-session707 Notifications相关的知识,希望对你有一定的参考价值。


Introduction to Notifications
https://developer.apple.com/wwdc2016/707


通知
这哥们说话有点不清晰啊。

远程通知
本地通知

可以被操作的通知
Dismiss Notifications

左滑消除
UNNotification

响应式的通知

只有一个方法UNUserNotificationCenterDelegate

 

Server->APNs->UserDevices

端到端的加密


Services Extension
通知被处理过之后然后再显示
Server->APNs-Extension>->UserDevices

Add Attachments?
添加附件?

UNNotificationServerceExtension

两个方法
1.收到消息+处理方法(解密,封装内容,调用处理回调方法)
2.消息过期处理


{
    aps:{
        alert: "xxx",
        mutable-content: 1
    },
    encrypted-content: "xxx"
}

总结

注册
消息体
定时
管理
操作

以上是关于wwdc2016-session707 Notifications的主要内容,如果未能解决你的问题,请参考以下文章

WWDC2016-session402-whatsNewInSwift3

Xcode 8 的 Debug 新特性 —- WWDC 2016 Session 410 & 412 学习笔记

WWDC-UIKit 中协议与值类型编程实战

Swift Struct 的引用计数

遇到 CKSubscription 错误:“无法创建或修改字段 'notif_num_subtitle_loc_args'”

优化 App 的启动时间