UILocalNotification本地通知(16年5月底最新测试)

项目中用到了本地通知功能,便到网上搜罗了一翻,各式各样的说法,经过自己的验证,整理如下

首先要说明的是IOS最多允许最近本地通知数量是64个,超过限制的本地通知将被忽略,经过测试,本地通知根本没有限制,可能以前有限制吧,现在已经不限制数量了。
其次是在iOS8以后需要先注册才能发送通知,所以在使用本地通知功能以前需要先注册。
下面说说用法:

1.注册通知(iOS8以后)

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions方法中添加注册代码

if([[UIDevice currentDevice].systemVersion doubleValue]>=8.0){//8.0以后使用这种方法来注册推送通知
        UIUserNotificationSettings *settings = [UIUserNotificationSettings settingsForTypes:UIUserNotificationTypeBadge|UIUserNotificationTypeSound|UIUserNotificationTypeAlert categories:nil];
        [[UIApplication sharedApplication] registerUserNotificationSettings:settings];
        [[UIApplication sharedApplication] registerUserNotificationSettings:[UIUserNotificationSettings settingsForTypes:(UIUserNotificationTypeSound | UIUserNotificationTypeAlert | UIUserNotificationTypeBadge) categories:nil]];
    }else{
        [[UIApplication sharedApplication] registerUserNotificationSettings:[UIUserNotificationSettings settingsForTypes:(UIUserNotificationTypeSound | UIUserNotificationTypeAlert | UIUserNotificationTypeBadge) categories:nil]];
    }

2.构建UILocalNotification

UILocalNotification *notification = [[UILocalNotification alloc] init];

3.配置UILocalNotification

3.1属性
  • 触发时间(fireDate,timeZone,repeatInterval(重复方式),repeatCalendar)//如果发送通知方式为即时发送则配置无意义

//10秒以后通知
NSDate * now = [[NSDate alloc] init];
notification.fireDate=[now dateByAddingTimeInterval:10];

//使用本地时区
notification.timeZone=[NSTimeZone defaultTimeZone];

// 设置重复的方式
notification.repeatInterval = kCFCalendarUnitSecond;

  • 通知行为(alertAction,hasAction)
    notification.alertAction=NSLocalizedString(@"锁屏啦,通知时间到啦", nil);
  • 触发通知时的启动画面(alertLaunchImage)
  • 通知的正文内容(alertTitle、alertBody)
    notification.alertBody=@"通知内容";
  • 通知的声音(soundName)
    notification.soundName = UILocalNotificationDefaultSoundName;
  • 通知消息数的展示(applicationIconBadgeNumber)App图标左上角的红数字
    notification.applicationIconBadgeNumber = 1;//不显示为0
  • 其它(userInfo),可以给通知绑定一些处理通知时需要的额外信息。

给这个通知增加key 便于取消。

NSDictionary *dict =[NSDictionary dictionaryWithObjectsAndKeys:[NSNumber numberWithInt:notificationtag],@"akey",nil];
[notification setUserInfo:dict];
3.2发送方式

- (void)presentLocalNotificationNow:(UILocalNotification *)notification//立即发送
- (void)scheduleLocalNotification:(UILocalNotification *)notification//按配置时间发送

3.3取消方式

- (void)cancelLocalNotification:(UILocalNotification *)notification//取消某个通知
- (void)cancelAllLocalNotifications//取消所有通知

// 获取所有本地通知数组  
NSArray *localNotifications = [UIApplication sharedApplication].scheduledLocalNotifications;  
    
for (UILocalNotification *notification in localNotifications) {  
    NSDictionary *userInfo = notification.userInfo;  
    if (userInfo) {  
      // 根据设置通知参数时指定的key来获取通知参数  
      NSString *info = userInfo[@"akey"];  
        
      // 如果找到需要取消的通知,则取消  
      if (info != nil) {  
        [[UIApplication sharedApplication] cancelLocalNotification:notification];  
        break;  
      }  
    }  
  }  

4.处理通知

在AppDelegate.m文件中- (void)application:(UIApplication *)application didReceiveLocalNotification:(UILocalNotification *)notification方法添加

// 获取通知所带的数据  
NSString *message = [notification.userInfo objectForKey:@"akey"];  
//可按需求进行数据处理
NSLog(@"%@",message);
// 更新显示的消息个数  
  NSInteger badge = [UIApplication sharedApplication].applicationIconBadgeNumber;  
  badge--;//读了一个,所以减1  
  badge = badge >= 0 ? badge : 0;  
  [UIApplication sharedApplication].applicationIconBadgeNumber = badge;//本人最讨厌这个小红点。。。

一般在进入App后应当清除小红点,在- (void)applicationDidBecomeActive:(UIApplication *)application方法中,添加一句[[UIApplication sharedApplication] setApplicationIconBadgeNumber:0];即可。


到这里就全部结束了,是不是很简单呢?其实我们平时用它也就进行一个类似弹框的提醒功能,注册、发送,几句代码就解决了。。。

版权声明:本文为 Crazy Steven 原创出品,欢迎转载,转载时请注明出处!

你可能感兴趣的:(UILocalNotification本地通知(16年5月底最新测试))