通知中心(NotificationCenter)和通知(UILocalNotification)是雷鋒和雷峰塔的關(guān)系哦
通知分為本地通知和遠(yuǎn)程通知
本地通知就是你好久不用一個程序,它給你拉一條橫幅寫“部落里沒有你臣妾好寂寞”;或者更典型的一個日歷軟件,到時間提醒你今天是喬幫主的忌日震束。(UILocalNotification)
即:由本地應(yīng)用程序發(fā)起的通知怜庸,一般是在應(yīng)用程序處于后臺或退出后,讓iOS系統(tǒng)在指定時間通知用戶的一種方式垢村。
遠(yuǎn)程通知就是你收到一條微信割疾,在鎖屏上顯示的或在頂部導(dǎo)航欄顯示的。(APNS)
本地通知使用步驟:
- 創(chuàng)建本地通知對象(UILocalNotification)
let notification = UILocalNotification()
- 設(shè)置處理通知的時間(fireDate屬性)
notification.fireDate = NSDate(timeIntervalSinceNow: 5)
- 配置通知的內(nèi)容:通知主體,通知聲音,圖標(biāo)數(shù)字
notification.repeatInterval = NSCalendarUnit.CalendarUnitMinute//CalendarUnit是指一分鐘/小時/周之后再發(fā)
notification.alertBody = "通知主體內(nèi)容!"
notification.applicationIconBadgeNumber = 1//強(qiáng)迫癥最受不了的小紅點(diǎn)嘉栓,圖標(biāo)數(shù)字1
notification.soundName = "success.caf"
- 調(diào)用通知:
按計劃調(diào)度: scheduleLocalNotification(一般情況都是按計劃調(diào)用)
UIApplication.sharedApplication().scheduleLocalNotification(notification)
立即調(diào)用: presentLocalNotification(一般不用)
要注意從iOS8開始宏榕,應(yīng)用想發(fā)通知拓诸,必須經(jīng)過用戶允許,否則通知無法發(fā)送麻昼。
func application(application: UIApplication, didFinishLaunchingWithOptions launchOptions: [NSObject: AnyObject]?) -> Bool {
//判斷當(dāng)前設(shè)備是否是IOS8
if(UIDevice.currentDevice().systemVersion > 7.0){
//向用戶申請發(fā)通知的權(quán)限(參數(shù)可以允許:通知內(nèi)容奠支,通知聲音,圖標(biāo)數(shù)字)
let settings = UIUserNotificationSettings(forTypes:UIUserNotificationType.Alert | UIUserNotificationType.Sound | UIUserNotificationType.Badge, categories:nil)
application.registerUserNotificationSettings(settings)
}
}
用戶點(diǎn)擊通知之后會進(jìn)入我們的App抚芦,所以還需要
1.取消紅點(diǎn)
func applicationWillEnterForeground(application: UIApplication) {
println("應(yīng)用程序從后臺進(jìn)入到了前臺!")
//取消應(yīng)用程序消息圖標(biāo)
application.applicationIconBadgeNumber = 0
}
//取消已有的通知
UIApplication.sharedApplication().cancelAllLocalNotifications()