是否可以在 UITabBarController 中显示 SFSafariViewController?

Is it possible to display a SFSafariViewController inside of a UITabBarController?

我想在选项卡中加载 SFSafariViewController,因此选项卡栏位于整个 Safari 视图的底部。

这可能吗?我尝试了这个但没有成功:

[self.tabBarController presentViewController:sfController animated:YES completion:nil];

Safari 视图是否需要

我能够以编程方式实现这一点。他们不让 UITabBar 覆盖在 UIViewController 之上的关键是将 translucent 设置为 NO:

在你的AppDelegate.m中:

@import SafariServices;

// ...

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
    // Override point for customization after application launch.

    self.window = [[UIWindow alloc] initWithFrame:[UIScreen mainScreen].bounds];

    UITabBarController *tabBarController = [[UITabBarController alloc] init];
    tabBarController.tabBar.translucent = NO;

    SFSafariViewController *firstVC = [[SFSafariViewController alloc] initWithURL:[NSURL URLWithString:@"http://whosebug.com"]];

    firstVC.title = @"SFSafariViewController";

    UIViewController *secondVC = [[UIViewController alloc] init];
    secondVC.view.backgroundColor = [UIColor blueColor];

    secondVC.title = @"Blue VC";

    tabBarController.viewControllers = @[firstVC, secondVC];

    self.window.rootViewController = tabBarController;
    [self.window makeKeyAndVisible];

    return YES;
}

以 JAL 的回答为基础,我能够在一个已经具有带有选项卡的现有结构的应用程序中实现这一点。

我希望选项卡 #3 在现有视图上按下按钮后进入选项卡内的 Safari 控制器,而不是像使用 Apple 的默认代码那样将 Safari 控制器弹出到它自己的 window .

关键是将 SFSafariViewController 交换到现有 UITabBarController 的视图控制器数组中。我将现有的原始视图控制器保存在选项卡 #3(索引 2)上,以便在按下 Safari 控制器上的“完成”按钮时返回到它。

这是我在按下按钮时使用选项卡进入 Safari 控制器的操作:

NSMutableArray *viewArray = [NSMutableArray arrayWithArray:self.tabBarController.viewControllers];
self.savedController = [viewArray objectAtIndex:2];
[viewArray replaceObjectAtIndex:2 withObject:safariController];
self.tabBarController.viewControllers = viewArray;
[self setTabIconTitle];

然后,当使用此委托调用在 Safari 控制器上按下“完成”按钮时,我可以像这样切换回该选项卡上的原始视图:

- (void)safariViewControllerDidFinish:(SFSafariViewController *)controller
{
    UITabBarController *tabBarController = (UITabBarController *)self.window.rootViewController;
    NSMutableArray *viewArray = [NSMutableArray arrayWithArray:tabBarController.viewControllers];
    [viewArray replaceObjectAtIndex:2 withObject:self.savedController];
    tabBarController.viewControllers = viewArray;
    [self setTabIconTitle];
}

当我在 tabBarController 视图控制器阵列中交换控制器时,我丢失了选项卡图标和选项卡名称,所以我必须设置它们。以下是我解决该问题的方法(并在触摸选项卡图标时保留我的主题):

- (void)setTabIconTitle
{
    UITabBarController *tabBarController = (UITabBarController *)self.window.rootViewController;
    UITabBar *tabBar = tabBarController.tabBar;
    UITabBarItem *marketplaceTab = [tabBar.items objectAtIndex:2];
    marketplaceTab.image = [[UIImage imageNamed:@"tab2-icon"] imageWithRenderingMode:UIImageRenderingModeAlwaysOriginal];
    marketplaceTab.selectedImage = [UIImage imageNamed:@"tab2-icon"];
    marketplaceTab.title = @"My Tab";
}

我必须承认,根据调用 SFSafariViewController 当前的正常行为,我不确定 Apple 是否打算在选项卡中以这种方式使用 SFSafariViewController。请注意,未来的 iOS 更新可能会改变此行为,并在新的 iOS 版本进入 Beta 时始终测试您的代码。