我正在触发显示为横幅的本地推送通知。如何使通知显示为警报?这是我目前使用的:
UILocalNotification *localNotification = [[UILocalNotification alloc] init];
localNotification.fireDate = date;
localNotification.alertBody = @"some notice";
localNotification.soundName = UILocalNotificationDefaultSoundName;
[[UIApplication sharedApplication] scheduleLocalNotification:localNotification];
[localNotification release];
我知道您可以进入电话设置并将它们设置为警报类型,但是您如何从应用程序中指定默认警报?
任何指导将不胜感激。
干杯