嘿伙计们,当我点击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)
}
}