博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
通知中心与本地通知
阅读量:6225 次
发布时间:2019-06-21

本文共 643 字,大约阅读时间需要 2 分钟。

  发送通知 

 [[NSNotificationCenter defaultCenter]postNotificationName:@"change" object:nil];

注册通知

[[NSNotificationCenter defaultCenter]addObserver:self selector:@selector(changeCount) name:@"change" object:nil];

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

    //设置时间

    local.fireDate=[[NSDate date]dateByAddingTimeInterval:0.5];

    //设置时区

    local.timeZone=[NSTimeZone defaultTimeZone];

    //设置内容

    local.alertBody=@"本地通知";

    //设置声音

    local.soundName=UILocalNotificationDefaultSoundName;

    //设置图标

    local.applicationIconBadgeNumber=10;

    

    [[UIApplication sharedApplication]scheduleLocalNotification:local];

转载于:https://www.cnblogs.com/zhuzhushen/p/4226614.html

你可能感兴趣的文章
pycharm 设置
查看>>
js添加事件
查看>>
模式识别开发之项目---基于人头检测的人流量监测
查看>>
嵌入式开发之优化---代码优化
查看>>
题解 P1665 【正方形计数】
查看>>
python 字典 get方法
查看>>
支付宝9张图稳扫出敬业福
查看>>
GBDT记录
查看>>
同一个菜品商家中心和erp价格显示不一致解决方案FAQ
查看>>
新博客
查看>>
中文前端UI框架Kit(十一)摇头动画?让你的页面元素嗑药嗑起来??
查看>>
2018-2019-2 20162329 《网络对抗技术》Exp7: 网络欺诈防范
查看>>
今日随笔:scrollTop与overflow
查看>>
分分钟用上C#中的委托和事件
查看>>
[示例]NSDictionary-数组中增加字典,并遍历数组
查看>>
开机一会,出现长时间闪屏,并且跳出SendRpt error
查看>>
Journal List
查看>>
selenium-控制浏览器操作
查看>>
leetcode — recover-binary-search-tree
查看>>
leetcode — symmetric-tree
查看>>