gpt4 book ai didi

ios - 当应用程序处于后台时,如何显示自定义本地通知 View 或自定义警报 View ?

转载 作者:塔克拉玛干 更新时间:2023-11-01 21:20:34 26 4
gpt4 key购买 nike

实际上我想在我的应用程序中显示本地通知。但是我想用一些自定义设计来显示这个通知,比如上面的确定和取消按钮。点击确定和取消我想执行一些操作。请提出一些建议。

提前致谢。

最佳答案

我暗示这段用于自定义本地通知的代码可能对您有所帮助其中 Accept 是您在 appDelegate.m 中获得本地通知委托(delegate)的标识符

    NSString *idetnt = @"Accept";
NSString *idetnt1 = @"Reject";
NSString *idetnt2 = @"Local Notification";
UIMutableUserNotificationAction *notificationAction1 = [[UIMutableUserNotificationAction alloc] init];
notificationAction1.identifier = idetnt;
notificationAction1.title = @"Snooze";
notificationAction1.activationMode = UIUserNotificationActivationModeBackground;
notificationAction1.destructive = NO;
notificationAction1.authenticationRequired = NO;

UIMutableUserNotificationAction *notificationAction2 = [[UIMutableUserNotificationAction alloc] init];
notificationAction2.identifier = idetnt1;
notificationAction2.title = @"Call";
notificationAction2.activationMode = UIUserNotificationActivationModeBackground;
notificationAction2.destructive = YES;
notificationAction2.authenticationRequired = YES;

UIMutableUserNotificationAction *notificationAction3 = [[UIMutableUserNotificationAction alloc] init];
notificationAction3.identifier = @"Reply";
notificationAction3.title = @"Reply";
notificationAction3.activationMode = UIUserNotificationActivationModeForeground;
notificationAction3.destructive = NO;
notificationAction3.authenticationRequired = YES;

UIMutableUserNotificationCategory *notificationCategory = [[UIMutableUserNotificationCategory alloc] init];
notificationCategory.identifier = @"Email";
[notificationCategory setActions:@[notificationAction1,notificationAction2,notificationAction3] forContext:UIUserNotificationActionContextDefault];
[notificationCategory setActions:@[notificationAction1,notificationAction2] forContext:UIUserNotificationActionContextMinimal];

NSSet *categories = [NSSet setWithObjects:notificationCategory, nil];
UIUserNotificationType notificationType = UIUserNotificationTypeBadge | UIUserNotificationTypeSound | UIUserNotificationTypeAlert;
UIUserNotificationSettings *notificationSettings = [UIUserNotificationSettings settingsForTypes:notificationType categories:categories];
[[UIApplication sharedApplication] registerUserNotificationSettings:notificationSettings];
UILocalNotification* localNotification = [[UILocalNotification alloc] init];
localNotification.fireDate = [NSDate dateWithTimeIntervalSinceNow:600];
localNotification.alertBody = idetnt2;
localNotification.category = @"Email";
[[UIApplication sharedApplication] scheduleLocalNotification:localNotification];

当你的应用程序在后台时,这个方法会调用

- (void)application:(UIApplication *)application handleActionWithIdentifier:(NSString *)identifier forLocalNotification:(UILocalNotification *)notification completionHandler:(void(^)())completionHandler
{
if ([identifier isEqualToString:@"Accept"])
{
}
else if ([identifier isEqualToString:@"Reject"])
{
}
else if ([identifier isEqualToString:@"Reply"])
{

}
if(completionHandler != nil)
completionHandler();
}

当你的应用程序在前台时,这个方法会调用

- (void)application:(UIApplication *)app didReceiveLocalNotification:(UILocalNotification *)localNotification
{
}

转到功能选项并单击远程通知enter image description here

关于ios - 当应用程序处于后台时,如何显示自定义本地通知 View 或自定义警报 View ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37113400/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com