您好我在3秒钟内逐个推送3个本地通知。我在推送后立即收到第一个通知,但其余的通知在几分钟后发出。我浏览了一些文档和博客,但所有人都在推动我在应用程序中的工作方式。请帮我解决这个问题。任何帮助将不胜感激。
这是我推送通知的代码
UILocalNotification *notification = [UILocalNotification new];
// Notification details
notification.alertBody = message;
notification.alertAction = NSLocalizedString(@"View", nil);
notification.soundName = UILocalNotificationDefaultSoundName;
notification.userInfo = info;
[[UIApplication sharedApplication] presentLocalNotificationNow:notification];