我對Xcode比較新,我正在構建一個非常簡單的鬧鐘,下面是應用程序的一小部分。我的問題是:如何在警報觸發時顯示自定義視圖(即圖片或動畫),並在其上放置一個「解除」按鈕?謝謝你在前進當本地通知被觸發時的自定義視圖
尼古拉
- (void) scheduleLocalNotificationWithDate:(NSDate *)fireDate :(NSString *)message
{
UILocalNotification *notificaiton = [[UILocalNotification alloc] init];
if (notificaiton == nil)
return;
notificaiton.fireDate = fireDate;
notificaiton.alertBody = message;
notificaiton.timeZone = [NSTimeZone defaultTimeZone];
notificaiton.alertAction = @"View";
notificaiton.soundName = @"alarm-clock-1.mp3";
notificaiton.applicationIconBadgeNumber = 1;
notificaiton.repeatInterval = kCFCalendarUnitWeekday;
NSLog(@"repeat interval is %@",notificaiton.description);
[[UIApplication sharedApplication] scheduleLocalNotification:notificaiton];
可能重複[在本地通知的警報正文中顯示圖像](http://stackoverflow.com/questions/4941949/show-an-i-a-mage-in-the-alert-body-of-a-本地通知) –