iOS10 添加本地推送(Local Notification)

2024-01-12 17:38

本文主要是介绍iOS10 添加本地推送(Local Notification),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!


转: http://blog.csdn.net/lincsdnnet/article/details/52970747


iOS10 添加本地推送(Local Notification)

新的推送注册机制

[objc] view plain copy 在CODE上查看代码片 派生到我的代码片
  1. #import <UserNotifications/UserNotifications.h>  
  2. #import "AppDelegate.h"  
  3. @interface AppDelegate ()<UNUserNotificationCenterDelegate>  
  4.   
  5. @end  
  6.   
  7. @implementation AppDelegate  
  8.   
  9. - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {  
  10.     // 使用 UNUserNotificationCenter 来管理通知  
  11.     UNUserNotificationCenter *center = [UNUserNotificationCenter currentNotificationCenter];  
  12.     //监听回调事件  
  13.     center.delegate = self;  
  14.       
  15.     //iOS 10 使用以下方法注册,才能得到授权  
  16.     [center requestAuthorizationWithOptions:(UNAuthorizationOptionAlert + UNAuthorizationOptionSound)  
  17.                           completionHandler:^(BOOL granted, NSError * _Nullable error) {  
  18.                               // Enable or disable features based on authorization.  
  19.                           }];  
  20.       
  21.     //获取当前的通知设置,UNNotificationSettings 是只读对象,不能直接修改,只能通过以下方法获取  
  22.     [center getNotificationSettingsWithCompletionHandler:^(UNNotificationSettings * _Nonnull settings) {  
  23.           
  24.     }];  
  25.     return YES;  
  26. }  
  27.   
  28. #pragma mark - UNUserNotificationCenterDelegate  
  29. //在展示通知前进行处理,即有机会在展示通知前再修改通知内容。  
  30. -(void)userNotificationCenter:(UNUserNotificationCenter *)center willPresentNotification:(UNNotification *)notification withCompletionHandler:(void (^)(UNNotificationPresentationOptions))completionHandler{  
  31.     //1. 处理通知  
  32.       
  33.     //2. 处理完成后条用 completionHandler ,用于指示在前台显示通知的形式  
  34.     completionHandler(UNNotificationPresentationOptionAlert);  
  35. }  
  36. @end  

推送本地通知

[objc] view plain copy 在CODE上查看代码片 派生到我的代码片
  1. //使用 UNNotification 本地通知  
  2. +(void)registerNotification:(NSInteger )alerTime{  
  3.       
  4.     // 使用 UNUserNotificationCenter 来管理通知  
  5.     UNUserNotificationCenter* center = [UNUserNotificationCenter currentNotificationCenter];  
  6.       
  7.     //需创建一个包含待通知内容的 UNMutableNotificationContent 对象,注意不是 UNNotificationContent ,此对象为不可变对象。  
  8.     UNMutableNotificationContent* content = [[UNMutableNotificationContent alloc] init];  
  9.     content.title = [NSString localizedUserNotificationStringForKey:@"Hello!" arguments:nil];  
  10.     content.body = [NSString localizedUserNotificationStringForKey:@"Hello_message_body"  
  11.  arguments:nil];  
  12.     content.sound = [UNNotificationSound defaultSound];  
  13.       
  14.     // 在 alertTime 后推送本地推送  
  15.     UNTimeIntervalNotificationTrigger* trigger = [UNTimeIntervalNotificationTrigger  
  16.  triggerWithTimeInterval:alerTime repeats:NO];  
  17.   
  18.     UNNotificationRequest* request = [UNNotificationRequest requestWithIdentifier:@"FiveSecond"  
  19.  content:content trigger:trigger];  
  20.       
  21.     //添加推送成功后的处理!  
  22.     [center addNotificationRequest:request withCompletionHandler:^(NSError * _Nullable error) {  
  23.         UIAlertController *alert = [UIAlertController alertControllerWithTitle:@"本地通知" message:@"成功添加推送" preferredStyle:UIAlertControllerStyleAlert];  
  24.         UIAlertAction *cancelAction = [UIAlertAction actionWithTitle:@"取消" style:UIAlertActionStyleCancel handler:nil];  
  25.         [alert addAction:cancelAction];  
  26.         [[UIApplication sharedApplication].keyWindow.rootViewController presentViewController:alert animated:YES completion:nil];  
  27.     }];  
  28. }  

iOS 10 以前本地推送通知:

[objc] view plain copy 在CODE上查看代码片 派生到我的代码片
  1. + (void)registerLocalNotificationInOldWay:(NSInteger)alertTime {  
  2.     // ios8后,需要添加这个注册,才能得到授权  
  3.     // if ([[UIApplication sharedApplication] respondsToSelector:@selector(registerUserNotificationSettings:)]) {  
  4.     // UIUserNotificationType type = UIUserNotificationTypeAlert | UIUserNotificationTypeBadge | UIUserNotificationTypeSound;  
  5.     // UIUserNotificationSettings *settings = [UIUserNotificationSettings settingsForTypes:type  
  6.     // categories:nil];  
  7.     // [[UIApplication sharedApplication] registerUserNotificationSettings:settings];  
  8.     // // 通知重复提示的单位,可以是天、周、月  
  9.     // }  
  10.       
  11.     UILocalNotification *notification = [[UILocalNotification alloc] init];  
  12.     // 设置触发通知的时间  
  13.     NSDate *fireDate = [NSDate dateWithTimeIntervalSinceNow:alertTime];  
  14.     NSLog(@"fireDate=%@",fireDate);  
  15.       
  16.     notification.fireDate = fireDate;  
  17.     // 时区  
  18.     notification.timeZone = [NSTimeZone defaultTimeZone];  
  19.     // 设置重复的间隔  
  20.     notification.repeatInterval = kCFCalendarUnitSecond;  
  21.       
  22.     // 通知内容  
  23.     notification.alertBody =  @"该起床了...";  
  24.     notification.applicationIconBadgeNumber = 1;  
  25.     // 通知被触发时播放的声音  
  26.     notification.soundName = UILocalNotificationDefaultSoundName;  
  27.     // 通知参数  
  28.     NSDictionary *userDict = [NSDictionary dictionaryWithObject:@"开始学习iOS开发了" forKey:@"key"];  
  29.     notification.userInfo = userDict;  
  30.       
  31.     // ios8后,需要添加这个注册,才能得到授权  
  32.     if ([[UIApplication sharedApplication] respondsToSelector:@selector(registerUserNotificationSettings:)]) {  
  33.         UIUserNotificationType type =  UIUserNotificationTypeAlert | UIUserNotificationTypeBadge | UIUserNotificationTypeSound;  
  34.         UIUserNotificationSettings *settings = [UIUserNotificationSettings settingsForTypes:type  
  35.                                                                                  categories:nil];  
  36.         [[UIApplication sharedApplication] registerUserNotificationSettings:settings];  
  37.         // 通知重复提示的单位,可以是天、周、月  
  38.         notification.repeatInterval = NSCalendarUnitDay;  
  39.     } else {  
  40.         // 通知重复提示的单位,可以是天、周、月  
  41.         notification.repeatInterval = NSDayCalendarUnit;  
  42.     }  
  43.       
  44.     // 执行通知注册  
  45.     [[UIApplication sharedApplication] scheduleLocalNotification:notification];  
  46. }  


效果图






这篇关于iOS10 添加本地推送(Local Notification)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/598646

相关文章

使用Python实现快速搭建本地HTTP服务器

《使用Python实现快速搭建本地HTTP服务器》:本文主要介绍如何使用Python快速搭建本地HTTP服务器,轻松实现一键HTTP文件共享,同时结合二维码技术,让访问更简单,感兴趣的小伙伴可以了... 目录1. 概述2. 快速搭建 HTTP 文件共享服务2.1 核心思路2.2 代码实现2.3 代码解读3.

在java中如何将inputStream对象转换为File对象(不生成本地文件)

《在java中如何将inputStream对象转换为File对象(不生成本地文件)》:本文主要介绍在java中如何将inputStream对象转换为File对象(不生成本地文件),具有很好的参考价... 目录需求说明问题解决总结需求说明在后端中通过POI生成Excel文件流,将输出流(outputStre

SpringBoot配置Ollama实现本地部署DeepSeek

《SpringBoot配置Ollama实现本地部署DeepSeek》本文主要介绍了在本地环境中使用Ollama配置DeepSeek模型,并在IntelliJIDEA中创建一个Sprin... 目录前言详细步骤一、本地配置DeepSeek二、SpringBoot项目调用本地DeepSeek前言随着人工智能技

OpenManus本地部署实战亲测有效完全免费(最新推荐)

《OpenManus本地部署实战亲测有效完全免费(最新推荐)》文章介绍了如何在本地部署OpenManus大语言模型,包括环境搭建、LLM编程接口配置和测试步骤,本文给大家讲解的非常详细,感兴趣的朋友一... 目录1.概况2.环境搭建2.1安装miniconda或者anaconda2.2 LLM编程接口配置2

大数据spark3.5安装部署之local模式详解

《大数据spark3.5安装部署之local模式详解》本文介绍了如何在本地模式下安装和配置Spark,并展示了如何使用SparkShell进行基本的数据处理操作,同时,还介绍了如何通过Spark-su... 目录下载上传解压配置jdk解压配置环境变量启动查看交互操作命令行提交应用spark,一个数据处理框架

在VSCode中本地运行DeepSeek的流程步骤

《在VSCode中本地运行DeepSeek的流程步骤》本文详细介绍了如何在本地VSCode中安装和配置Ollama和CodeGPT,以使用DeepSeek进行AI编码辅助,无需依赖云服务,需要的朋友可... 目录步骤 1:在 VSCode 中安装 Ollama 和 CodeGPT安装Ollama下载Olla

C#集成DeepSeek模型实现AI私有化的流程步骤(本地部署与API调用教程)

《C#集成DeepSeek模型实现AI私有化的流程步骤(本地部署与API调用教程)》本文主要介绍了C#集成DeepSeek模型实现AI私有化的方法,包括搭建基础环境,如安装Ollama和下载DeepS... 目录前言搭建基础环境1、安装 Ollama2、下载 DeepSeek R1 模型客户端 ChatBo

JAVA集成本地部署的DeepSeek的图文教程

《JAVA集成本地部署的DeepSeek的图文教程》本文主要介绍了JAVA集成本地部署的DeepSeek的图文教程,包含配置环境变量及下载DeepSeek-R1模型并启动,具有一定的参考价值,感兴趣的... 目录一、下载部署DeepSeek1.下载ollama2.下载DeepSeek-R1模型并启动 二、J

0基础租个硬件玩deepseek,蓝耘元生代智算云|本地部署DeepSeek R1模型的操作流程

《0基础租个硬件玩deepseek,蓝耘元生代智算云|本地部署DeepSeekR1模型的操作流程》DeepSeekR1模型凭借其强大的自然语言处理能力,在未来具有广阔的应用前景,有望在多个领域发... 目录0基础租个硬件玩deepseek,蓝耘元生代智算云|本地部署DeepSeek R1模型,3步搞定一个应

一文教你使用Python实现本地分页

《一文教你使用Python实现本地分页》这篇文章主要为大家详细介绍了Python如何实现本地分页的算法,主要针对二级数据结构,文中的示例代码简洁易懂,有需要的小伙伴可以了解下... 在项目开发的过程中,遇到分页的第一页就展示大量的数据,导致前端列表加载展示的速度慢,所以需要在本地加入分页处理,把所有数据先放