2

我对 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];
4

2 回答 2

1

使用此方法

在应用程序运行时处理通知

- (void)application:(UIApplication *)app didReceiveLocalNotification:(UILocalNotification *)notif 
{
// show your custom alert view
}

处理从通知启动

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {

UILocalNotification *localNotif =
[launchOptions objectForKey:UIApplicationLaunchOptionsLocalNotificationKey];
if (localNotif) 
{
// show your custom alert view
}

return YES;
}
于 2013-07-17T13:13:42.237 回答
0

如果您的应用程序在后台,您可以使用建议的 Kalpesh。但是,如果您在前台有应用程序,则不能直接显示自定义视图。您可以显示警报或自定义警报,然后在接受该警报后显示自定义视图。

于 2013-07-17T13:21:51.920 回答