点击另一个标签时不滚动到顶部

时间:2018-05-19 07:16:11

标签: ios swift uitableview

嘿伙计们,当我点击tabBar项目时,我已经使用下面的代码滚动到顶部。当你在当前视图控制器中并且工作完美时,它没关系。但是我希望从另一个viewController中点击viewController的tabBar项时,表视图不会滚动到顶部。任何想法?

func tabBarController(_ tabBarController: UITabBarController, didSelect viewController: UIViewController) {
    let tabBarIndex = tabBarController.selectedIndex
    if tabBarIndex == 0 {
        self.tableView.setContentOffset(CGPoint.zero, animated: true)
    }
}

0 个答案:

没有答案