gpt4 book ai didi

ios - 在 appDelegate 中从 didReceiveRemoteNotification 执行 segue

转载 作者:行者123 更新时间:2023-11-29 13:09:09 25 4
gpt4 key购买 nike

编辑:在我进一步讨论之前,我应该说我已经找到了解决方案,解决了我在使用基于导航 Controller 的应用程序时尝试做的事情,但我的情况并非如此。

我创建了我的推送通知以拥有一个作业,我已经记录了所有内容并收到了推送,单击推送通知并收到了正确的日志。

我的目标是根据要执行的作业执行 segue 以访问我的特定 View Controller 。

- (void)application:(UIApplication *)application didReceiveRemoteNotification:(NSDictionary *)userInfo {
NSString *job = [[userInfo valueForKey:@"aps"] valueForKey:@"job"];

if([job isEqualToString: @"msg"]) {
NSLog(@"Going to message");
}
if ([job isEqualToString: @"friend"]) {
NSLog(@"Going to friend request");
}
if ([job isEqualToString: @"inv"]) {
NSLog(@"Going to invite notifications");
}
if ([job isEqualToString: @"find"]) {
NSLog(@"Going to find notifications");
}
}

最佳答案

  if([job isEqualToString: @"msg"]) {
NSLog(@"Going to message");
UIStoryboard* storyBoard = [UIStoryboard storyboardWithName:@"MainStoryboard" bundle:nil];
UIViewController* detailVC = [storyBoard instantiateViewControllerWithIdentifier:@"msg"];
[self.window.rootViewController presentViewController:detailVC animated:YES completion:nil];
}

关于ios - 在 appDelegate 中从 didReceiveRemoteNotification 执行 segue,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17817559/

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