UILocalNotification设置为警报而不是横幅

时间:2013-02-19 15:27:33

标签: ios push-notification apple-push-notifications uilocalnotification

我正在解雇显示为横幅的本地推送通知。如何将通知显示为警报?这就是我目前使用的:

UILocalNotification *localNotification = [[UILocalNotification alloc] init];

localNotification.fireDate = date;
localNotification.alertBody = @"some notice";
localNotification.soundName = UILocalNotificationDefaultSoundName;

[[UIApplication sharedApplication] scheduleLocalNotification:localNotification];
[localNotification release];

我知道您可以进入手机设置并将其设置为警报类型,但是如何从应用程序中默认指定警报?

任何指导都将受到高度赞赏。

干杯

0 个答案:

没有答案