作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用自定义 URL 方案打开我的应用程序。我下面的代码用于从标签栏打开一个 View 。但是我应该如何打开一个特定的 View 。
- (BOOL)application:(UIApplication *)application openURL:(NSURL *)url sourceApplication:(NSString *)sourceApplication annotation:(id)annotation {
if ([url.host isEqual: @"main"])
{
UITabBarController *tab = (UITabBarController *)self.window.rootViewController;
tab.selectedIndex = 0;
}
最佳答案
您需要检查 url scheme 如下:
if ([[url scheme] isEqualToString:@"main"]) {
UIStoryboard *storyboard = [UIStoryboard storyboardWithName:@"MainStoryboard" bundle:nil];
UITabBarController *rootViewController = [storyboard instantiateViewControllerWithIdentifier:@"tabBarcontroller"]; // if you are use storyboard .
[self.Window setRootViewController:rootViewController];
}
关于ios - 如何从 appdelegate 打开 View ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40927704/
我是一名优秀的程序员,十分优秀!