上一篇讲到的本地推送是普通的消息推送,本篇要讲一下带按钮动作的推送消息

import UIKit

@UIApplicationMain

class AppDelegate: UIResponder, UIApplicationDelegate {

var window: UIWindow?

// 本地推送通知是通过实例化UILocalNotification实现的。要实现本地化推送可以在AppDelegate.swift中添加代码实现,本事例是一个当App进入后台时推送一条消息给用户。

func application(application: UIApplication, didFinishLaunchingWithOptions launchOptions: [NSObject: AnyObject]?) -> Bool {

//1.创建一组动作

let userAction = UIMutableUserNotificationAction()

userAction.identifier = "action"

userAction.title = "Accept"

userAction.activationMode = UIUserNotificationActivationMode.Foreground

let userAction2 = UIMutableUserNotificationAction()

userAction2.identifier = "action2"

userAction2.title = "Ingore"

userAction2.activationMode = UIUserNotificationActivationMode.Background

userAction2.authenticationRequired = true

userAction2.destructive = true

//2.创建动作的类别集合

let userCategory = UIMutableUserNotificationCategory()

userCategory.identifier = "MyNotification"

userCategory.setActions([userAction,userAction2], forContext: UIUserNotificationActionContext.Minimal)

let categories:NSSet = NSSet(object: userCategory)

//3.创建UIUserNotificationSettings,并设置消息的显示类类型

let userSetting = UIUserNotificationSettings(forTypes: [.Badge, .Sound, .Alert]

, categories: categories as? Set<UIUserNotificationCategory>)

//4.注册推送

application.registerForRemoteNotifications()

application.registerUserNotificationSettings(userSetting)

return true

}

// 当App既将进入后台、锁屏、有电话进来时会触发此事件

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.

}

// 当App进入后台时触发此事件,此时在applicationDidEnterBackground方法内写入以下代码:

// 此时将按Home键将App切换到后台时会有一条推送消息,App角标变为了“1”

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()

let notification = UILocalNotification()

//notification.fireDate = NSDate().dateByAddingTimeInterval(1)

//setting timeZone as localTimeZone

notification.timeZone = NSTimeZone.localTimeZone()

notification.repeatInterval = NSCalendarUnit.Day

notification.alertTitle = "This is a local notification"

notification.alertBody = "Hey,It's great to see you again"

notification.alertAction = "OK"

notification.category = "MyNotification" //这个很重要,跟上面的动作集合(UIMutableUserNotificationCategory)的identifier一样

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)

}

/*

点击推送消息的按钮时会触发func application(application: UIApplication, handleActionWithIdentifier identifier: String?, forLocalNotification notification: UILocalNotification, completionHandler: () -> Void) {}这个方法。

如果是远程推送那就是func application(application: UIApplication, handleActionWithIdentifier identifier: String?, forRemoteNotification userInfo: [NSObject : AnyObject], completionHandler: () -> Void) {}这个方法。

*/

// 这里只需要调用本地第一个方法即可

func application(application: UIApplication, handleActionWithIdentifier identifier: String?, forLocalNotification notification: UILocalNotification, completionHandler: () -> Void) {

print("identifier=\(identifier)")  //这里的identifier是按钮的identifier

completionHandler()  //最后一定要调用这上方法

UIApplication.sharedApplication().cancelAllLocalNotifications()

let userInfo = notification.userInfo!

let title = userInfo["key"] as! String

let alert = UIAlertView()

alert.title = title

alert.message = notification.alertBody

alert.addButtonWithTitle(notification.alertAction!)

alert.cancelButtonIndex = 0

alert.show()

}

//  当App从后台即将回到前台时触发此事件

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.

}

// 当App变成活动状态时触发此事件

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.

// 当程序处于活动状态的时候清除ICON的角标

application.cancelAllLocalNotifications()

application.applicationIconBadgeNumber = 0

}

// 当App退出时触发此方法,一般用于保存某些特定的数据

func applicationWillTerminate(application: UIApplication) {

// Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:.

}

}

Swift - 推送之本地推送(UILocalNotification)添加Button的点击事件的更多相关文章

  1. IOS之推送通知(本地推送和远程推送)

    推送通知和NSNotification是有区别的: NSNotification:是看不到的 推送通知:是可以看到的 IOS中提供了两种推送通知 本地推送通知:(Local Notification) ...

  2. Swift - 推送之本地推送(UILocalNotification)

    // 本地推送通知是通过实例化UILocalNotification实现的.要实现本地化推送可以在AppDelegate.swift中添加代码实现,本事例是一个当App进入后台时推送一条消息给用户. ...

  3. SWIFT推送之本地推送(UILocalNotification)

    本地推送通知是通过实例化UILocalNotification实现的.要实现本地化推送可以在AppDelegate.swift中添加代码实现,本事例是一个当App进入后台时推送一条消息给用户. 1.首 ...

  4. SWIFT推送之本地推送(UILocalNotification)之二带按钮的消息

    上一篇讲到的本地推送是普通的消息推送,本篇要讲一下带按钮动作的推送消息,先上个图瞅瞅: 继上一篇的内容进行小小的改动: 在didFinishLaunchingWithOptions方法内进行以下修改 ...

  5. IOS中程序如何进行推送消息(本地推送,远程推送)

    [1]-------------什么是推送消息? 我就以一张图解释------------ [2]-----------IOS程序中如何进行本地推送?----------- 2.1,先征求用户同意 1 ...

  6. ios10 UNNtificationRequest UNUserNotificationCenter的应用 推送之本地推送

    iOS10 已经 "deprected" 我们的UILocalNotification 采用了全新的UNUserNotificationCenter; 1 首先,你需要引进< ...

  7. [iOS 高级] iOS远程推送与本地推送大致流程

    本地推送: UILocalNotification *notification=[[UILocalNotification alloc] init]; if (notification!=nil) { ...

  8. IOS中程序如何进行推送消息(本地推送,远程推送)2(上)

    未看过本地推送的,可以提前看一下本地推送. http://www.cnblogs.com/wolfhous/p/5135711.html =============================== ...

  9. IOS中程序如何进行推送消息(本地推送,远程推送)2(下)

    内容中包含 base64string 图片造成字符过多,拒绝显示

随机推荐

  1. 15天学会jquery

    第二章 15 Days of jQuery 比window.onload 更快一些的载入 window.onload()是传统javascript 里一个能吃苦耐劳的家伙.它长久以来一直 被程序员们作 ...

  2. EF初接触01

    自动属性:{get;set} 隐式类型 var, dynamic var:  隐式的类型推断出来,在编译阶段把Var换成对应的实际的类型 所以只应用在编译之间, 在运行阶段是和实际类型意义的 dyna ...

  3. 读w3c中文教程对键盘事件解释的感想 -遁地龙卷风

    写这篇博文源于w3c中文教程对键盘事件的解释, onkeydown 某个键盘按键被按下 onkeypress 某个键盘按键被按下并松开 onkeyup 某个键盘按键被松开 可在实践中发现 只注册key ...

  4. linux 权限操作

    添加用户 命令格式:useradd 选项 用户名 -g 缺省组(不写则默认为用户名组) -G 所属组(添加到多个用户组,逗号隔开) -c 描述信息 -d 指定家目录 useradd –g aa bb ...

  5. swing复制文本框内容

    Clipboard clipboard = Toolkit.getDefaultToolkit().getSystemClipboard(); //得到系统剪贴板 String text = jTex ...

  6. ndk学习8: 编译动态库

    目录: 手工编译动态库 ndk-build编译动态库(Eclipse环境)   手工编译静态库 老规矩还是先手工操作,知其然并知其所以然   需要用到的核心命令: gcc -g -c -fpic -W ...

  7. 解决vi/vim中粘贴会在行首多很多缩进和空格的问题

    解决vi/vim中粘贴会在行首多很多缩进和空格的问题 secureCRT会将你原来的文本原封不动的按照字符串的样式发送给服务器.所以当你的服务器上的vim设置为autoindent的话,在i模式下,那 ...

  8. 【GoLang】深入理解slice len cap什么算法? 参数传递有啥蹊跷?

    先上结论 .内置append函数在现有数组的长度 < 时 cap 增长是翻倍的,再往上的增长率则是 1.25,至于为何后面会说. .Go语言中channel,slice,map这三种类型的实现机 ...

  9. cf592d

    题意:给出一个无根树,点数为10^5,所有边的长度为1.给定其中有一些点是受到攻击的. 现在要求一个人选定一个点作为起点,走遍所有的受攻击点(不用再回到起点). 需要的最短距离是多少,选定的起点是哪个 ...

  10. Linux下如何移除同时在线的用户

    Linux下移除同时在线的用户太多时,shell操作会变得比较卡,很多时候经常是直接关闭终端导致不正常退出,一般要等上一段时间才会退出,这个时候主动结束用户进程使用户下线是比较好的方式,方法如下: 使 ...