我有我的通知,但由于某种原因,它仍然没有作为警报视图出现。
这里是 :
- (void)applicationDidEnterBackground:(UIApplication *)application
{
UIApplication *app = [UIApplication sharedApplication];
UILocalNotification *notification = [[UILocalNotification alloc] init];
if (notification) {
notification.fireDate = [NSDate dateWithTimeIntervalSinceNow:5];
notification.timeZone = [NSTimeZone defaultTimeZone];
notification.alertBody = @"Notification";
notification.alertAction = @"View";
[app scheduleLocalNotification:notification];
}