作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
访问网站上的共享网址后,系统会提示查看者在我的应用程序中打开该链接。如果应用程序正在运行,则它可以完美运行。
但是,如果应用程序关闭,则不会在我的 ViewController 上调用 viewDidLoad
和 viewWillAppear
方法,因此我无法打开所需的 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/
我是一名优秀的程序员,十分优秀!