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

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

我想知道如何设置本地通知,以便在我设置时,我的应用程序生成带有自定义消息的通知/警报...



jeck猫
浏览 690回答 3
3回答

当年话下

在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]];}
打开App,查看更多内容
随时随地看视频慕课网APP