gpt4 book ai didi

ios - 仅当应用未处于事件状态时才在 openURL 函数后不调用方法

转载 作者:行者123 更新时间:2023-11-29 00:24:36 24 4
gpt4 key购买 nike

访问网站上的共享网址后,系统会提示查看者在我的应用程序中打开该链接。如果应用程序正在运行,则它可以完美运行。

但是,如果应用程序关闭,则不会在我的 ViewController 上调用 viewDidLoadviewWillAppear 方法,因此我无法打开所需的 ViewController。

如果应用程序是从 openURL 函数启动的,有人知道如何允许 viewDidLoad 函数运行吗?

我目前有:

AppDelegate:

-(BOOL) application:(UIApplication *)application openURL:(NSURL *)url sourceApplication:(NSString *)sourceApplication annotation:(id)annotation {
if (!url) { return NO; }

NSString *party_url = [NSString stringWithFormat:@"%@%@/", PARTYURL, url.lastPathComponent];
[[NSNotificationCenter defaultCenter] postNotification:[NSNotification notificationWithName:@"WebViewNotification" object:party_url]];
return YES;
}

View Controller :

- (void)viewDidLoad {
[super viewDidLoad];
appDelegate = [AppDelegate getDelegate];
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(webViewNotification:) name:@"WebViewNotification" object:nil];
}

- (void)webViewNotification:(NSNotification *)notification {
NSString *url = [notification object];
PartyViewController *partyViewController = [self.storyboard instantiateViewControllerWithIdentifier:@"PartyViewController"];
partyViewController.partyUrl = url;
[self.navigationController pushViewController:partyViewController animated:YES];
}

同样,如果应用程序之前已打开,则效果很好。但是,如果它是关闭的,这将不起作用。谢谢!

最佳答案

当您的应用程序从链接启动而没有任何其他操作时,您的 View 堆栈中没有呈现的 ViewController 包含此代码。所以这段代码永远不会被执行。考虑直接在 CustomTabBarController 中呈现 partyViewController。

关于ios - 仅当应用未处于事件状态时才在 openURL 函数后不调用方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43403782/

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