我在我的应用程序中使用本地通知,当屏幕锁定时,它会在IOS-5中显示本地通知,但它不能在IOS下面说4。
有什么帮助吗?
答案 0 :(得分:3)
我一直在iOS 4和5上使用以下代码片段,它运行完美,看一看并检查自己的代码:
UILocalNotification *notification = [[UILocalNotification alloc] init];
notification.alertBody = @"Local Message";
notification.alertAction = @"View";
notification.soundName = UILocalNotificationDefaultSoundName;
notification.applicationIconBadgeNumber = 1;
notification.fireDate = date;
notification.timeZone = [NSTimeZone defaultTimeZone];
[[UIApplication sharedApplication] scheduleLocalNotification:notification];
[notification release];