IOS 的本地通知

- (void)viewDidLoad

{

[super viewDidLoad];

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

if(localNotification)

{

NSDate *now=[NSDate date];

localNotification.timeZone = [NSTimeZonedefaultTimeZone];

localNotification.repeatInterval =NSDayCalendarUnit;

localNotification.applicationIconBadgeNumber = 1;

localNotification.alertBody=@"该去吃晚饭了!";

localNotification.alertAction =NSLocalizedString(@"显示", nil);

NSDictionary* dic = [NSDictionarydictionaryWithObject:@"123" forKey:@"key"];

[localNotification setUserInfo:dic];

localNotification.fireDate = [nowdateByAddingTimeInterval:10];

//    localNotification.fireDate = [NSDate dateWithTimeIntervalSinceNow:10];

localNotification.hasAction = YES;

//        localNotification.repeatInterval = NSMinuteCalendarUnit;

localNotification.soundName =UILocalNotificationDefaultSoundName;

[[UIApplication sharedApplication]scheduleLocalNotification:localNotification];

[localNotification release];

}

//得到(24 * 60 * 60)即24小时之前的日期,dateWithTimeIntervalSinceNow:

NSDate* yesterday = [NSDatedateWithTimeIntervalSinceNow:-(24 * 60 * 60)];

NSLog(@"yesterday:%@",yesterday);

NSDateFormatter* dateFormat = [[NSDateFormatter alloc]init];

[dateFormat setDateFormat:@"YYYY-MM-dd hh:mm:ss"];

//计算 两个时间相隔多少秒

NSDate* date1 = [dateFormat dateFromString:[dateFormatstringFromDate:[NSDatedateWithTimeIntervalSinceNow:60*60*8]]];

NSLog(@"date1 = %@",date1);

NSDate* date2 =[NSDate dateWithTimeInterval:60*60*8sinceDate:[dateFormat dateFromString:@"2013-10-12 11:08:33"]] ;

NSLog(@"date2 = %@",date2);

NSTimeInterval timerInterVal = [date2timeIntervalSinceDate:date1];

NSLog(@"timerInterVal  %f",timerInterVal);

}

//监听本地通知事件:退出程序后执行:

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions

{

self.window = [[[UIWindow alloc] initWithFrame:[[UIScreen mainScreen]bounds]] autorelease];

// Override point for customization after application launch.

self.window.backgroundColor = [UIColor whiteColor];

ViewController* view = [[ViewController alloc] init];

[self.window setRootViewController:view];

[view release];

//设置iCon 上的数字

application.applicationIconBadgeNumber = 0;

UILocalNotification* notification = [launchOptionsobjectForKey:UIApplicationLaunchOptionsAnnotationKey];

if(notification)

{

NSLog(@"didFinishLaunchingWithOptions");

UIAlertView *alert =  [[UIAlertView alloc] initWithTitle:nilmessage:@"received E-mail" delegate:self cancelButtonTitle:@"OK"otherButtonTitles:nil];

[alert show];

[alert release];

}

[self.window makeKeyAndVisible];

return YES;

}

//监听本地通知事件:在没有退出程序的时候执行

- (void)application:(UIApplication *)application didReceiveLocalNotification:(UILocalNotification *)notification

{

NSLog(@"%@",[notification.userInfo valueForKey:@"key"]);

if(application.applicationState == UIApplicationStateActive)

{

UIAlertView* alert = [[[UIAlertView alloc] initWithTitle:@""

message:@"事项提醒"

delegate:self

cancelButtonTitle:@"关闭"

otherButtonTitles:nil, nil] autorelease];

[alert show];

}

else

{

[[UIApplication sharedApplication] cancelAllLocalNotifications];

}

}

- (void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex

{

[[UIApplication sharedApplication] cancelAllLocalNotifications];

}

 

下面是写在类里面的

+(void)addLocalNotificationWithMessage:(NSString *)message

FireDate:(NSDate *) fireDate

AlarmKey:(NSString *)alarmKey

{

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

if (notification!=nil) {

notification.fireDate=fireDate;

notification.timeZone=[NSTimeZone defaultTimeZone];

notification.soundName= UILocalNotificationDefaultSoundName;

notification.alertBody=message;

notification.hasAction = NO;

notification.userInfo=[[NSDictionary alloc]initWithObjectsAndKeys:alarmKey,@"AlarmKey", nil];

[[UIApplication sharedApplication] scheduleLocalNotification:notification];

}

[notification release];

}

+(void)deleteLocalNotification:(NSString *) alarmKey

{

NSArray * allLocalNotification=[[UIApplication sharedApplication]scheduledLocalNotifications];

for (UILocalNotification * localNotification in allLocalNotification) {

NSString * alarmValue=[localNotification.userInfoobjectForKey:@"AlarmKey"];

if ([alarmKey isEqualToString:alarmValue]) {

[[UIApplication sharedApplication]cancelLocalNotification:localNotification];

}

}

}

IOS 的本地通知的更多相关文章

  1. Android 和iOS 创建本地通知

    1 Android 中的发送本地通知的逻辑如下 先实例化Notification.Builder,再用builder创建出具体的Notification,创建时要指定好启动用的PendingInten ...

  2. iOS中 本地通知/本地通知详解 韩俊强的博客

    布局如下:(重点讲本地通知) iOS开发者交流QQ群: 446310206 每日更新关注:http://weibo.com/hanjunqiang  新浪微博 Notification是智能手机应用编 ...

  3. IOS开发-本地通知

    // 注册 发送通知的方法 -(void)pushNotfation{ //--------------初始化本地通知 alloc init 虽然是UI控件 但继承NSObject UILocalNo ...

  4. iOS创建本地通知和删除对应的通知,工作日通知

    本文的代码主要是:创建本地通知,删除对应的本地通知,创建工作日闹钟 直接上代码: // // ViewController.m // LocalNSNotification // // Created ...

  5. iOS开发本地通知

    /* 本地通知:不通过网络,在本地实现的通知,自己发给自己 远程通知:必须通过网络,使用推送技术(APNs),实现通知 本地通知: 1.要完成可以接收的通知形式的注册 2.具体通知的设置 3.发送通知 ...

  6. IOS本地通知:UILocalNotification使用记录

    第一次接触IOS的本地通知的使用,看到别人写的一个比较详细的记录,自己整理过来,方便以后再次使用和拓展: 1.创建一个本地通知,添加到系统: // 初始化本地通知对象 UILocalNotificat ...

  7. iOS 10 UserNotification框架解析 – 本地通知

    iOS 10以前的通知比较杂乱,把本地通知和远程通知分开了,诞生了许多功能类似的API,很容易让初学者犯迷糊.而iOS 10的通知把API做了统一,利用独立的UserNotifications.fra ...

  8. cocos2d-js 安卓自定义本地通知功能

    安卓新手,笔记有理解不当的地方望指出,经过几天折腾终于可以实现类似ios的本地通知功能(ios就几行代码),可能有第三方sdk可以方便实现,暂时没去找 思路: 1. startService 和bin ...

  9. iOS(本地通知与远程通知)

    iOS 推送通知有两种:本地推送.远程推送. 本地推送 :  在不需要联网的情况下,由APP发出推送,常用于某一时刻的通知,如闹钟.本地通送有局限性在于当APP处于后台或者退出时就无法发出通知. 远程 ...

随机推荐

  1. Commons Configuration之一简介

    转载自(https://my.oschina.net/u/2000201/blog/486327) 1    简介 Commons Configuration软件类库提供通用配置接口,使Java应用程 ...

  2. 安装配置mariadb-10.1.19

    本文参考:http://chenzehe.iteye.com/blog/1266260  感谢原作者的分享! 首先安装/更新一些编译时会用到的基础包 [root@localhost local]# y ...

  3. windchill系统安装大概步骤

    1.安装VMware Workstation虚拟机 2.win7的64位操作系统(为什么不用32位?因为32位的内存最大只能设置4G) 3.安装Oracle数据库(映射iso文件[上面栏的虚拟机-&g ...

  4. 随机数的生成 - rand(), srand()

    2017-08-20  17:43:29 writer:pprp 我们采用随机数可以对我们的算法进行大数据检验 /* name : 简单的随机数生成算法 writer : pprp declare : ...

  5. 一些putty的应用设置

    把windows下putty的key转换成linux上使用的rsa key    http://ask.apelearn.com/question/937 putty生成的密钥导入connectbot ...

  6. mysql术语

    事务 概念:在关系数据库中,一个事物可以是一条sql语句,一组sql语句或整个程序. 特性:事物应该具有4个特性:原子性.一致性.隔离性.持久性.统称为ACID特性. 原子性(A)一个不可分割的工作单 ...

  7. [转]检测SQLSERVER数据库CPU瓶颈及内存瓶颈

    在任务管理器中看到sql server 2000进程的内存占用,而在sql server 2005中,不能在任务管理器中查看sql server 2005进程的内存占用,要用 以下语句查看sql se ...

  8. [mybatis]Record与Example的用法

    一.Record 一个Record是一个Dao对象(继承Mapper接口),tkmybatis会将record自动映射成sql语句,record中所有非null的属性都作为sql语句,如: 映射的sq ...

  9. django from验证组件

    from django.shortcuts import render,redirect from django.forms import Form,fields class loginForm(Fo ...

  10. ctci1.8

    bool isSub(string str0, string str1){     if(str0.length() != str1.length())         return false;   ...