-1

在我的应用程序中,我正在尝试创建警报,但唯一的问题是 ios6 UILocalnotification 被转换为徽章而不是 UIAlertView。这是我正在使用的代码:

UILocalNotification * notif = [[UILocalNotification alloc]init];
    notif.fireDate = date;
    notif.alertAction = @"Snooze";
    notif.repeatInterval = NSDayCalendarUnit;
    notif.alertBody = @"Time to wake up";
    notif.soundName = @"client_song.mp3";

    [[UIApplication sharedApplication]scheduleLocalNotification:notif];
4

1 回答 1

3

抱歉,您对此别无选择。允许用户指定(在设置应用程序中)来自您的应用程序的本地通知应显示为警报、横幅或根本不显示 - 您对此无能为力。如果您不喜欢这样,请不要使用本地通知...

于 2013-04-25T19:38:54.890 回答