iOS12中推送通知新特性

FlyOceanFish發表於2018-06-26

序言

眾所周知,iOS中訊息推送扮演了不可或缺的位置。不管是本地通知還是遠端通知無時不刻的在影響著我們的使用者體驗,以致於在iOS10的時候蘋果對推送大規模重構,獨立了已UserNotificationsUserNotificationsUI兩個單獨的framework,可見重要性一斑。針對於WWDC18蘋果又給我們帶來了什麼驚喜呢?

新特性

  • Grouped notifications 推送分組
  • Notification content extensions 推送內容擴充套件中的可互動和動態更改Action
  • Notification management 推送訊息的管理
  • Provisional authorization 臨時授權
  • Critical alerts 警告性質的推送

推送分組

隨著手機上應用的增多,尤其QQ和微信這兩大聊天工具,當手機鎖屏的時候,伴隨著就是好滿屏的推送訊息。這一現象不知大家有沒有覺著不高效和體驗性比較差呢?蘋果針對鎖屏情況下,對訊息進行了分組,從而有效的提高了使用者的互動體驗,分組形式如下:

1529981248132.jpg

分組形式:

  • 蘋果會自動幫我們以APP的為分類依據進行訊息的分組;
  • 如果我們設定了threadIdentifier屬性則以此屬性為依據,進行分組。

1529981611452.jpg
程式碼如下:

let content = UNMutableNotificationContent()
content.title = "Notifications Team"
content.body = "WWDC session after party"
content.threadIdentifier = "notifications-team-chat"//通過這個屬性設定分組,如果此屬性沒有設定則以APP為分組依據
複製程式碼

摘要(Summary)格式定製

當蘋果自動將推送訊息的歸攏到一起的時候,最下邊會有一個訊息摘要。預設格式是:n more notifications from xxx。不過此格式我們是可以定製的。

  • 第一種
let summaryFormat = "%u 更多訊息啦啦"
return UNNotificationCategory(identifier: "category-identifier",
actions: [],
intentIdentifiers: [],
hiddenPreviewsBodyPlaceholder: nil,
categorySummaryFormat: summaryFormat,
options: [])
複製程式碼

1529979505103.jpg

  • 第二種 let summaryFormat = "%u 更多訊息啦啦!來自OceanFish"
let content = UNMutableNotificationContent()
content.body = "..."
content.summaryArgument = "OceanFish"
複製程式碼

1529979632784.jpg

同一個category的不同格式,蘋果會將其合併在一起;並且不同的summaryArgument蘋果也會將其預設合併到一起進行顯示

1529979325697.jpg

也可以通過let summaryFormat = NSString.localizedUserNotificationString(forKey: "NOTIFICATION_SUMMARY", arguments: nil)來進行本地化服務

數字定製

有時會出現另一個場景:比如傳送了2條推送訊息,一條是“你有3個邀請函”,另一條是“你有5個邀請函”。那摘要則會顯示你有2更多訊息。這顯然不是我們想要的!我們最好的期望肯定是"你有8個邀請函"。那這種效果怎麼顯示呢?

蘋果給我們提供了另外一個屬性,結合上邊的摘要(Summary)格式定製我們可以實現以上效果。

let content = UNMutableNotificationContent()
content.body = "..."
content.threadIdentifier = "..."
content.summaryArgument = "Song by Song"
content.summaryArgumentCount = 3
複製程式碼

當多個訊息歸攏到一起的時候,蘋果會將summaryArgumentCount值加在一起,然後進行顯示

推送內容擴充套件中的可互動和動態更改Action

之前訊息是不支援互動的和動態更改Action的,比如介面有個空心喜歡按鈕,使用者點選則變成了實心喜歡按鈕;有個Acction顯示“喜歡”,使用者點選之後變成"不喜歡"

推送介面可互動

1529990894961.jpg
如上圖推送介面有個空心喜歡按鈕

  • 首先配置Notification Content Extention的UUNNotificationExtensionUserInteractionEnabledYES

1529990622777.jpg

  • 然後程式碼實現
import UserNotificationsUI
class NotificationViewController: UIViewController, UNNotificationContentExtension {

    @IBOutlet var likeButton: UIButton?

    likeButton?.addTarget(self, action: #selector(likeButtonTapped), for: .touchUpInside)

    @objc func likeButtonTapped() {
        likeButton?.setTitle("♥", for: .normal)
        likedPhoto()
    }
}

複製程式碼

Action動態化

1529990465078.jpg

1529990483022.jpg

// Notification Content Extensions
class NotificationViewController: UIViewController, UNNotificationContentExtension {

    func didReceive(_ response: UNNotificationResponse, completionHandler completion:
        (UNNotificationContentExtensionResponseOption) -> Void) {
        if response.actionIdentifier == "like-action" {
            // Update state...
            let unlikeAction = UNNotificationAction(identifier: "unlike-action",
                                                    title: "Unlike", options: [])
            let currentActions = extensionContext?.notificationActions
            let commentAction = currentActions![1]
            let newActions = [ unlikeAction, commentAction ]
            extensionContext?.notificationActions = newActions
        }
    }
}
複製程式碼

performNotificationDefaultAction()用於點選推送的時候啟動應用;dismissNotificationContentExtension()用於關閉鎖屏頁面的推送具體一條訊息

推送訊息的管理

這個主要是蘋果針對訊息增加了一個“管理”的按鈕,訊息左滑即可出現。

1529991382740.jpg
幫助我們快速的針對訊息進行設定。

  • Deliver Quietly 則會不會播放聲音。
  • turn off 則會關閉推送
  • Setttings 我們可以自己定製
import UIKit
import UserNotifications
class AppDelegate: UIApplicationDelegate, UNUserNotificationCenterDelegate {
    func userNotificationCenter(_ center: UNUserNotificationCenter,
                                openSettingsFor notification: UNNotification? ) {

    }
}
複製程式碼

臨時授權

臨時授權主要體現就是推送訊息過來會有兩個按鈕,會主動讓使用者自己選擇

1529991740590.jpg

let notificationCenter = UNUserNotificationCenter.current()

noficationCenter.requestAuthorization(options: [.badge,.alert,.sound,.provisional]) { (tag, error) in

}
複製程式碼

在申請許可權的時候,加上provisional即可。

警告訊息

比如家庭安全、健康、公共安全等因素的時候。此訊息需要使用者必須採取行動。最簡單的一個場景是家裡安裝了一個攝像頭,我們去上班了,此時如果家中有人,則攝像頭會推送訊息給我們。

1529991999274.jpg

  • 證書申請 https://developer.apple.com/contact/request/notifications-critical-alerts-entitlement/

  • 本地許可權申請

let notificationCenter = UNUserNotificationCenter.current()
noficationCenter.requestAuthorization(options: [.badge,.alert,.sound,.criticalAlert]) { (tag, error) in

}
複製程式碼

在申請許可權的時候,加上criticalAlert

  • 播放聲音
let content = UNMutableNotificationContent()
content.title = "WARNING: LOW BLOOD SUGAR"
content.body = "Glucose level at 57."
content.categoryIdentifier = "low-glucose—alert"
content.sound = UNNotificationSound.criticalSoundNamed(@"warning-sound" withAudioVolume: 1.00)
複製程式碼
// Critical alert push payload

{
  // Critical alert push payload

  {
      "aps" : {
          "sound" : {
              "critical": 1,
          }
      }
      "name": "warning-sound.aiff",
      "volume": 1.0
  }
}
複製程式碼

總結

至此WWDC中關於推送都已經整理完畢。大家有不懂的歡迎留言相互交流

引用

我的部落格

FlyOceanFish

相關文章