本地推送通知是通过实例化UILocalNotification实现的。要实现本地化推送可以在AppDelegate.swift中添加代码实现,本事例是一个当App进入后台时推送一条消息给用户。
1.首先在didFinishLaunchingWithOptions方法内添加代码,IOS8推送消息首先要获得用户的同意,在初次安装App时会提示用户是否允许程序推送消息,此方法是App第一次运行的时候被执行一次,每次从后台激活时不执行该方法.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | func application(application: UIApplication, didFinishLaunchingWithOptions launchOptions: [ NSObject : AnyObject]?) -> Bool { if (UIDevice.currentDevice().systemVersion as NSString ).floatValue >= 8 { //APService.registerForRemoteNotificationTypes( //UIUserNotificationType.Badge.rawValue | //UIUserNotificationType.Sound.rawValue | //UIUserNotificationType.Alert.rawValue, //categories: nil) application.registerUserNotificationSettings(UIUserNotificationSettings(forTypes: UIUserNotificationType.Badge | UIUserNotificationType.Sound | UIUserNotificationType.Alert, categories: nil )) } //APService.setupWithOption(launchOptions) return true } |
2.有几个方法要说一下,
1.func applicationWillResignActive(application: UIApplication){} 当App既将进入后台、锁屏、有电话进来时会触发此事件
2.func applicationDidEnterBackground(application: UIApplication) {} 当App进入后台时触发此事件
3.func applicationWillEnterForeground(application: UIApplication) {} 当App从后台即将回到前台时触发此事件
4.func applicationDidBecomeActive(application: UIApplication) {}当App变成活动状态时触发此事件
5.func applicationWillTerminate(application: UIApplication) {} 当App退出时触发此方法,一般用于保存某些特定的数据
此时在applicationDidEnterBackground方法内写入以下代码:
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 | 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. UIApplication.sharedApplication().cancelAllLocalNotifications() var notification = UILocalNotification() //notification.fireDate = NSDate().dateByAddingTimeInterval(1) //setting timeZone as localTimeZone notification.timeZone = NSTimeZone .localTimeZone() notification.repeatInterval = NSCalendarUnit .CalendarUnitDay notification.alertTitle = "This is a local notification" notification.alertBody = "Hey,It's great to see you again" notification.alertAction = "OK" notification.soundName = UILocalNotificationDefaultSoundName //setting app's icon badge notification.applicationIconBadgeNumber = 1 var userInfo:[ NSObject : AnyObject] = [ NSObject : AnyObject]() userInfo[ "kLocalNotificationID" ] = "LocalNotificationID" userInfo[ "key" ] = "Attention Please" notification.userInfo = userInfo //UIApplication.sharedApplication().scheduleLocalNotification(notification) //UIApplication.sharedApplication().presentLocalNotificationNow(notification) application.presentLocalNotificationNow(notification) } |
此时将按Home键将App切换到后台时会有一条推送消息,App角标变为了“1”
3.当用户点击消息时会触发didReceiveLocalNotification事件,在这个事件内写些代码:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | func application(application: UIApplication, didReceiveLocalNotification notification: UILocalNotification) { UIApplication.sharedApplication().cancelAllLocalNotifications() let userInfo = notification.userInfo! let title = userInfo[ "key" ] as! String var alert = UIAlertView() alert.title = title alert.message = notification.alertBody alert.addButtonWithTitle(notification.alertAction!) alert.cancelButtonIndex = 0 alert.show() //APService.showLocalNotificationAtFront(notification, identifierKey: nil) } |
4.当程序处于活动状态的时候清除ICON的角标
1 2 3 4 5 6 7 8 | 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. //setting the desk top application icon's badge as zero //application.applicationIconBadgeNumber = 0 application.cancelAllLocalNotifications() application.applicationIconBadgeNumber = 0 } |
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· AI与.NET技术实操系列:基于图像分类模型对图像进行分类
· go语言实现终端里的倒计时
· 如何编写易于单元测试的代码
· 10年+ .NET Coder 心语,封装的思维:从隐藏、稳定开始理解其本质意义
· .NET Core 中如何实现缓存的预热?
· 25岁的心里话
· 闲置电脑爆改个人服务器(超详细) #公网映射 #Vmware虚拟网络编辑器
· 零经验选手,Compose 一天开发一款小游戏!
· 因为Apifox不支持离线,我果断选择了Apipost!
· 通过 API 将Deepseek响应流式内容输出到前端