在我的应用程序中,我正在尝试创建警报,但唯一的问题是 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];