为了账号安全,请及时绑定邮箱和手机立即绑定

如何在iOS中创建本地通知?

如何在iOS中创建本地通知?

jeck猫 2019-08-19 10:20:54
如何在iOS中创建本地通知?我想知道如何设置本地通知,以便在我设置时,我的应用程序生成带有自定义消息的通知/警报...
查看完整描述

3 回答

?
当年话下

TA贡献1890条经验 获得超9个赞

在appdelegate.m文件中,在applicationDidEnterBackground中编写以下代码以获取本地通知

- (void)applicationDidEnterBackground:(UIApplication *)application{
   UILocalNotification *notification = [[UILocalNotification alloc]init];
   notification.repeatInterval = NSDayCalendarUnit;
   [notification setAlertBody:@"Hello world"];
   [notification setFireDate:[NSDate dateWithTimeIntervalSinceNow:1]];
   [notification setTimeZone:[NSTimeZone  defaultTimeZone]];
   [application setScheduledLocalNotifications:[NSArray arrayWithObject:notification]];}


查看完整回答
反对 回复 2019-08-19
  • 3 回答
  • 0 关注
  • 689 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信