码迷,mamicode.com
首页 > 其他好文 > 详细

UILocalNotification本地通知

时间:2014-06-29 00:11:49      阅读:164      评论:0      收藏:0      [点我收藏+]

标签:blog   使用   数据   os   name   for   

// 执行通知一定要退出应用或挂起应用(进入后台)才能收到通知。

// 创建本地通知

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

// 通知触发时间

// 5秒钟之后触发
notification.fireDate = [NSDate dateWithTimeIntervalSinceNow:5];

// 通知时区

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

// 通知提示内容

notification.alertBody = @"顶部提示内容,您有有一个通知";

// 通知提示音

//使用默认的通知提示音
notification.soundName = UILocalNotificationDefaultSoundName;

// 应用程序右上角显示的数字

notification.applicationIconBadgeNumber = 1;

// 数据字典

notification.userInfo = @{@"userName": @"小明", @"age": @(18)};

// 启动这个通知

[[UIApplication sharedApplication] scheduleLocalNotification:notification];

// 进入前台,清除右上角图标

- (void)applicationWillEnterForeground:(UIApplication *)application
{
    [application setApplicationIconBadgeNumber:0];
}

// 点顶端通知进入应用

- (void)application:(UIApplication *)application didReceiveLocalNotification:(UILocalNotification *)notification
{
    UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"标题" message:notification.userInfo[@"userName"] delegate:nil cancelButtonTitle:@"确定" otherButtonTitles:nil];
    [alert show];
}

 // 清除当前应用所有通知

[[UIApplication sharedApplication] cancelAllLocalNotifications];

UILocalNotification本地通知,布布扣,bubuko.com

UILocalNotification本地通知

标签:blog   使用   数据   os   name   for   

原文地址:http://www.cnblogs.com/android-dev/p/3794072.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
分享档案
周排行
mamicode.com排行更多图片
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!