2

我正在编写一个代码,其中我有一个带有某些选项卡的视图控制器。解除警报后,我想自动打开第二个选项卡。为此,我在警报消失时发布了本地通知。此通知的观察者位于主视图控制器中,当调用此观察者时,会选择视图控制器的第二个选项卡。这是我的代码以便更好地理解:

vc.dismiss(animated: true, completion: { 
// vc is the view controller in which my custom alert is shown

NotificationCenter.default.post(name: NSNotification.Name.OpenConsumerTab, 
                                    object: ConsumerHomeTab.Stats.rawValue)
})

和主视图控制器:(问题相关代码)

NotificationCenter.default.addObserver(self,
                                       selector: #selector(onOpenConsumerTabNotificationRecieved(notification:)),
                                       name: Notification.Name.OpenConsumerTab,
                                       object: nil)

@objc public func onOpenConsumerTabNotificationRecieved(notification: Notification) {

    if (notification.object as! Int == ConsumerHomeTab.Stats.rawValue)
    {
        selectedIndex = 1
    }
}

这是打开选项卡,但我得到的输出是这样的:(得到一个额外的黑条)

在此处输入图像描述

为什么会这样?也许它正在显示一个全新的主视图控制器(带有标签栏),但原因是什么?如果我错了,请纠正我,因为我是 iOS 的新手。

我尝试过的事情:

  • 获取根视图控制器(主视图控制器)并选择其选项卡,但输出相同。

  • 使用弹出视图控制器,但它打开了第一个选项卡(索引 0),但我的要求是打开第二个选项卡(索引 1)

4

2 回答 2

3

我认为也不需要使用通知中心,您可以在关闭该 VC 时编写此代码

解除警报

 alert.dismissWithClickedButtonIndex(-1, animated: true)

更改视图控制器:

 self.tabBarController?.selectedIndex = selectedTabIndex 


 // selectedTabIndex is the index of ViewController which you want to select
于 2018-01-30T13:26:35.933 回答
0

请使用 tabbarController 实例将所选索引设置为,可能您没有使用 tabbar 控制器实例设置索引:

if let tababarController = self.window!.rootViewController as! UITabBarController? { tababarController.selectedIndex = 1
}
于 2018-01-30T13:21:00.117 回答