前言
自iOS10 更新以来,Apple 表示这是 iOS 有史以来最大的升级(our biggest release yet),更加智能开放的Siri、强化应用对3DTouch支持、 HomeKit 、电话拦截及全新设计的通知等等。
iOS 10 中将之前繁杂的推送通知统一成UserNotifications.framework 来集中管理和使用通知功能,还增加一些实用的功能——撤回单条通知、更新已展示通知、中途修改通知内容、在通知中显示多媒体资源、自定义UI等功能。
iOS10推送通知的有以下两个两个扩展框架:
- UNNotificationServiceExtension(通知服务拓展)
- UNNotificationContentExtension(通知内容拓展)
通知拓展 | 特性 |
---|---|
UNNotificationServiceExtension | 在收到通知后,展示通知前,做一些事情的。比如,增加附件,网络请求等。 |
UNNotificationContentExtension | 可以通过提前配置的categoryIdentifier来定制推送显示的界面 |