博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
cocos2dx 加本地推送通知
阅读量:5106 次
发布时间:2019-06-13

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

SystemHelper::createLocalNotification(someTask.seconds, SystemHelper::getLocalizedText("Task_Finish"));

void SystemHelper::createLocalNotification(unsigned long time,const char *msg)

{

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

    if(nil != notif){

        NSDate* now = [NSDate new] ;

        notif.fireDate= [now dateByAddingTimeInterval:time];

        notif.repeatInterval=0;

        notif.timeZone=[NSTimeZone defaultTimeZone];

        notif.applicationIconBadgeNumber = [[UIApplication sharedApplication] applicationIconBadgeNumber] + 1;

        notif.soundName= UILocalNotificationDefaultSoundName;

        notif.alertBody= [NSString stringWithUTF8String:msg];

//        notif.hasAction = NO;

        [[UIApplication sharedApplication] scheduleLocalNotification:notif];

    }

}

转载于:https://www.cnblogs.com/niwococo/p/4424564.html

你可能感兴趣的文章
【题解】[P4178 Tree]
查看>>
cer证书签名验证
查看>>
【深度学习】caffe 中的一些参数介绍
查看>>
QML学习笔记之一
查看>>
App右上角数字
查看>>
WPF中实现多选ComboBox控件
查看>>
TestNG入门
查看>>
【ul开发攻略】HTML5/CSS3菜单代码 阴影+发光+圆角
查看>>
IO—》Properties类&序列化流与反序列化流
查看>>
Codeforces 719B Anatoly and Cockroaches
查看>>
ActiveMQ与spring整合
查看>>
关于TFS2010使用常见问题
查看>>
poj2752 Seek the Name, Seek the Fame
查看>>
理解oracle中连接和会话
查看>>
[13年迁移]Firefox下margin-top问题
查看>>
Zookeeper常用命令 (转)
查看>>
程序员的数学
查看>>
聚合与组合
查看>>
洛谷 P2089 烤鸡【DFS递归/10重枚举】
查看>>
我眼中的技术地图
查看>>