在應用圖標右上角添加消息數(shù)提醒,可以很方便的告知用戶該應用中有無新消息需要處理。下面用xcode 7.3.1來簡要說明一下如何用swift語言進行此功能的實現(xiàn)。
1、修改 AppDelegate.swift
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
// // AppDelegate.swift // RainbowDemo // // Created by Jackwang on 16/8/17. // Copyright © 2016年 Jackwang . All rights reserved. // import UIKit @UIApplicationMain class AppDelegate: UIResponder, UIApplicationDelegate { var window: UIWindow? func application(application: UIApplication, didFinishLaunchingWithOptions launchOptions: [NSObject: AnyObject]?) -> Bool { // Override point for customization after application launch. //使用UILocalNotification除了可以實現(xiàn)本地消息的推送功能(可以設置推送內容,推送時間,提示音), //還可以設置應用程序右上角的提醒個數(shù)。 let settings = UIUserNotificationSettings(forTypes: [.Alert, .Badge, .Sound], categories: nil) application.registerUserNotificationSettings(settings) return true } func applicationWillResignActive(application: UIApplication) { // Sent when the application is about to move from active to inactive state. This can occur for certain types of temporary interruptions (such as an incoming phone call or SMS message) or when the user quits the application and it begins the transition to the background state. // Use this method to pause ongoing tasks, disable timers, and throttle down OpenGL ES frame rates. Games should use this method to pause the game. } func applicationDidEnterBackground(application: UIApplication) { // Use this method to release shared resources, save user data, invalidate timers, and store enough application state information to restore your application to its current state in case it is terminated later. // If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits. } func applicationWillEnterForeground(application: UIApplication) { // Called as part of the transition from the background to the inactive state; here you can undo many of the changes made on entering the background. } func applicationDidBecomeActive(application: UIApplication) { // Restart any tasks that were paused (or not yet started) while the application was inactive. If the application was previously in the background, optionally refresh the user interface. } func applicationWillTerminate(application: UIApplication) { // Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:. } } |
2 修改在ViewController.swift
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
// // ViewController.swift // RainbowDemo // // Created by jackwang on 16/8/17. // Copyright © 2016年 jackwang. All rights reserved. // import UIKit class ViewController: UIViewController { override func viewDidLoad() { super .viewDidLoad() // Do any additional setup after loading the view, typically from a nib. //發(fā)送通知消息 scheduleNotification(); } //發(fā)送通知消息 func scheduleNotification(){ //清除所有本地推送 UIApplication.sharedApplication().cancelAllLocalNotifications() //創(chuàng)建UILocalNotification來進行本地消息通知 let localNotification = UILocalNotification() //設置應用程序右上角的提醒個數(shù) localNotification.applicationIconBadgeNumber = 8 ; UIApplication.sharedApplication().scheduleLocalNotification(localNotification) } override func didReceiveMemoryWarning() { super .didReceiveMemoryWarning() // Dispose of any resources that can be recreated. } } |
3 編譯運行
第一次會彈出詢問是否允許推送消息,確認后,第二次運行該app后,會在圖標右上角標注消息數(shù),如下圖所示:
修改APP的顯示名稱,可以單擊info.plist,然后修改器Bundle name,如下圖所示:
以上所述是小編給大家介紹的swift在IOS應用圖標上添加提醒個數(shù)的方法,希望對大家有所幫助,如果大家有任何疑問請給我留言,小編會及時回復大家的。在此也非常感謝大家對服務器之家網(wǎng)站的支持!
原文鏈接:http://www.cnblogs.com/isaboy/archive/2016/08/18/swift_ios_app_UILocalNotification_msg.html