ios 交流群:264706196
本地推送
本地通知是由本地应用触发的,它是基于时间行为的一种通知形式,例如闹钟定时、待办事项提醒,又或者一个应用在一段时候后不使用通常会提示用户使用此应用等都是本地通知。创建一个本地通知通常分为以下几个步骤:
- 创建UILocalNotification。
- 设置处理通知的时间fireDate。
- 配置通知的内容:通知主体、通知声音、图标数字等。
- 配置通知传递的自定义数据参数userInfo(这一步可选)。
- 调用通知,可以使用scheduleLocalNotification:按计划调度一个通知,也可以使用presentLocalNotificationNow立即调用通知。
//
//AppDelegate.m
//LocalNotification
//
//Created by Kenshin Cui on 14/03/28.
//Copyright (c) 2014年 Kenshin Cui. All rights reserved.
//#import "AppDelegate.h"
#import "KCMainViewController.h"@interface AppDelegate ()@end@implementation AppDelegate#pragma mark - 应用代理方法
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {_window=[[UIWindow alloc]initWithFrame:[UIScreen mainScreen].bounds];
_window.backgroundColor =[UIColor colorWithRed:249/255.0 green:249/255.0 blue:249/255.0 alpha:1];
//设置全局导航条风格和颜色
[[UINavigationBar appearance] setBarTintColor:[UIColor colorWithRed:23/255.0 green:180/255.0 blue:237/255.0 alpha:1]];
[[UINavigationBar appearance] setBarStyle:UIBarStyleBlack];
KCMainViewController *mainController=[[KCMainViewController alloc]init];
_window.rootViewController=mainController;
[_window makeKeyAndVisible];
//如果已经获得发送通知的授权则创建本地通知,否则请求授权(注意:如果不请求授权在设置中是没有对应的通知设置项的,也就是说如果从来没有发送过请求,即使通过设置也打不开消息允许设置)
if ([[UIApplication sharedApplication]currentUserNotificationSettings].types!=UIUserNotificationTypeNone) {
[self addLocalNotification];
}else{
[[UIApplication sharedApplication]registerUserNotificationSettings:[UIUserNotificationSettings settingsForTypes:UIUserNotificationTypeAlert|UIUserNotificationTypeBadge|UIUserNotificationTypeSoundcategories:nil]];
}return YES;
}#pragma mark 调用过用户注册通知方法之后执行(也就是调用完registerUserNotificationSettings:方法之后执行)
-(void)application:(UIApplication *)application didRegisterUserNotificationSettings:(UIUserNotificationSettings *)notificationSettings{
if (notificationSettings.types!=UIUserNotificationTypeNone) {
[self addLocalNotification];
}
}#pragma mark 进入前台后设置消息信息
-(void)applicationWillEnterForeground:(UIApplication *)application{
[[UIApplication sharedApplication]setApplicationIconBadgeNumber:0];
//进入前台取消应用消息图标
}#pragma mark - 私有方法
#pragma mark 添加本地通知
-(void)addLocalNotification{//定义本地通知对象
UILocalNotification *notification=[[UILocalNotification alloc]init];
//设置调用时间
notification.fireDate=[NSDate dateWithTimeIntervalSinceNow:10.0];
//通知触发的时间,10s以后
notification.repeatInterval=2;
//通知重复次数
//notification.repeatCalendar=[NSCalendar currentCalendar];
//当前日历,使用前最好设置时区等信息以便能够自动同步时间//设置通知属性
notification.alertBody=@"最近添加了诸多有趣的特性,是否立即体验?";
//通知主体
notification.applicationIconBadgeNumber=1;
//应用程序图标右上角显示的消息数
notification.alertAction=@"打开应用";
//待机界面的滑动动作提示
notification.alertLaunchImage=@"Default";
//通过点击通知打开应用时的启动图片,这里使用程序启动图片
//notification.soundName=UILocalNotificationDefaultSoundName;
//收到通知时播放的声音,默认消息声音
notification.soundName=@"msg.caf";
//通知声音(需要真机才能听到声音)//设置用户信息
notification.userInfo=@{@"id":@1,@"user":@"Kenshin Cui"};
//绑定到通知上的其他附加信息//调用通知
[[UIApplication sharedApplication] scheduleLocalNotification:notification];
}#pragma mark 移除本地通知,在不需要此通知时记得移除
-(void)removeNotification{
[[UIApplication sharedApplication] cancelAllLocalNotifications];
}
@end
【本地通知/推送】参考资料:
http://www.cnblogs.com/kenshincui/p/4168532.html#localNotification