iOS 10 本地通知教程

做者:Arthur Knopper,原文連接,原文日期:2016-10-11
譯者:Crystal Sun;校對:星夜暮晨;定稿:CMBios

當用戶沒有在前臺使用某 App 的時候,經過本地通知(Local Notification)能夠將消息推送給用戶。iOS 10 裏蘋果公司引入了多信息通知 (rich notifications),其中能夠包含不一樣類型的媒體內容。在本節教程中,咱們將建立一個本地通知,其中包含了一個圖片消息。本節教程使用的是 Xcode 8 和 iOS 10。git

打開 Xcode,建立一個 Single View Application。github

點擊 Next,product name 一欄填寫 IOS10LocalNotificationTutorial,填寫好 Organization Name 和 Organization Identifier,Language 選擇 Swift,Devices 選擇 iPhone。swift

找到 Storyboard,拖一個 Button 控件到主視圖中,將其 title 改成 「Send Local Notification」。選中此 Button 控件,隨後點擊 Auto Layout 的 Align 按鈕,選中其中的 Horizontally in Container 選項,而後在 "Update Frame" 的下拉選項中選擇 "Item of New Constraints",最後點擊 "Add 1 Constraint"。app

接下來,依然選中 Button 控件,點擊 Auto Layout 的 Pin 按鈕,而後點擊向上的豎線,在 "Update Frame" 的下拉選項中選擇 "Item of New Constraints",最後點擊 "Add 1 Constraint"。ide

在這時候 Storyboard 會是下圖這個樣子:url

打開 Assistant Editor,確保 ViewController.swift 文件可見,按住 Ctrl 鍵並同時拖拽 Button 按鈕到 ViewController 類裏,建立以下圖所示的 Action。spa

找到 ViewController.swift 文件,更改 viewDidLoad 方法爲以下所示:翻譯

override func viewDidLoad() {
    super.viewDidLoad()  
    UNUserNotificationCenter.current().requestAuthorization(options: [.alert]) { (success, error) in
        if success {
            print("success")
        } else {
            print("error")
        }
    }
}

UNUserNotificationCenter 用以管理與通知相關的行爲。若是想要使用通知的話,必須先獲取用戶的受權,纔可以使用 requestAuthorization 方法。code

咱們將一張圖片做爲通知的附件。從這裏下載這張圖片,而後將其引入工程。接下來實現 sendNotification 方法。

@IBAction func sendNotification(_ sender: AnyObject) {
    // 1
    let content = UNMutableNotificationContent()
    content.title = "Notification Tutorial"
    content.subtitle = "from ioscreator.com"
    content.body = " Notification triggered"
    
    // 2
    let imageName = "applelogo"
    guard let imageURL = Bundle.main.url(forResource: imageName, withExtension: "png") else { return }
        
    let attachment = try! UNNotificationAttachment(identifier: imageName, url: imageURL, options: .none)
        
    content.attachments = [attachment]
    
    // 3
    let trigger = UNTimeIntervalNotificationTrigger(timeInterval: 10, repeats: false)
    let request = UNNotificationRequest(identifier: "notification.id.01", content: content, trigger: trigger)
    
    // 4  
    UNUserNotificationCenter.current().add(request, withCompletionHandler: nil)
    }
  1. UNMutableNotificationContent 對象包含有通知當中的數據。

  2. UNNotificationAttachment 對象包含有通知當中的媒體內容。

  3. UNNotificationRequest 被建立成功後,將會在 10 秒內被觸發。

  4. 系統將會安排通知的傳遞。

編譯並運行工程。這個時候會申請用戶的受權。

點擊 Allow,而後點擊 「Send Local Notification」按鈕來安排通知,接着點擊模擬器 Home 鍵(Shift + Command + H)回到屏幕主頁。十秒以後接收到了本地通知。

在 ioscreator 的 github 上能夠下載到本節課程 IOS10LocalNotificaitonTutorial 的源代碼。

本文由 SwiftGG 翻譯組翻譯,已經得到做者翻譯受權,最新文章請訪問 http://swift.gg

相關文章
相關標籤/搜索