呈现UILocalNotification不立即显示横幅

时间:2014-03-28 10:43:21

标签: ios apple-push-notifications uilocalnotification

您好我在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];

0 个答案:

没有答案