如何在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]];}
- 3 回答
- 0 关注
- 689 浏览
添加回答
举报
0/150
提交
取消