Notification在iOS10上的变化
ios10在notification上的变化还是很大的,notificationCenter中显示的不在是之前仅仅只有一个body,新增了如下几点。
title
subtitle
attachment(giff,image,video)
展示的内容更加的丰富。同时在localNotification由原来的只有一种scheduled(时间间隔维度),现在增加到了三种。
- UNTimeIntervalNotificationTrigger(时间间隔维度)
- UNCalendarNotificationTrigger(日期维度)
- UNLocationNotificationTrigger(地理位置维度)
同时支持notification展开,自定义展开后的内容。这里看这样一片文章就可以了,不在做过多的阐述