当我以编程方式更改UITabBarController.selectedIndex
时,我很难使视图过渡动画化。
当我点击TabBar
图标时,动画效果很好,但是当我从selectedIndex
动作更改了gestureRecognizer
时。
TabBar控制器类的转换代码如下:
func tabBarController(_ tabBarController: UITabBarController, shouldSelect viewController: UIViewController) -> Bool {
if CanChangeTab {
guard let fromView = tabBarController.selectedViewController!.view, let toView = viewController.view else {
return false // Make sure you want this as false
}
if fromView != toView {
if (tabBarController.prevIndex > tabBarController.selectedIndex) {
UIView.transition(from: fromView, to: toView, duration: 0.3, options: [.transitionFlipFromLeft], completion: nil)
} else {
UIView.transition(from: fromView, to: toView, duration: 0.3, options: [.transitionFlipFromRight], completion: nil)
}
}
return true
} else {
return false
}
}
手势识别器正在调用以下函数,而上面的代码没有被调用:
@objc func swiped(_ gesture: UISwipeGestureRecognizer) {
if (CanChangeTab) {
self.tabBarController?.prevIndex = (self.tabBarController?.selectedIndex)!
if gesture.direction == .left {
if (self.tabBarController?.selectedIndex)! < 4 { // set your total tabs here
self.tabBarController?.selectedIndex += 1
}
} else if gesture.direction == .right {
if (self.tabBarController?.selectedIndex)! > 0 {
self.tabBarController?.selectedIndex -= 1
}
}
}
}
我也看不到要更改手势基础的动画应该调用或覆盖的内容。
答案 0 :(得分:0)
问题在于,您正在执行的操作不是如何制作选项卡栏控制器动画。您必须编写正式的自定义动画过渡。
这意味着:
您的标签栏控制器具有一个委托,该委托实现animationControllerForTransitionFrom
返回一个UIViewControllerAnimatedTransitioning对象,interactionControllerFor
返回一个UIViewControllerInteractiveTransitioning对象。
这些对象实现startInteractiveTransition
,interruptibleAnimator(using:)
,transitionDuration(using:)
,animateTransition(using:)
和animationEnded
,以通过UIViewPropertyAnimator执行动画。
然后,手势识别器将能够通过设置selectedIndex
来触发动画,并能够通过提供的UIViewControllerContextTransitioning对象和UIViewPropertyAnimator来跟踪和更新动画。
答案 1 :(得分:0)
好的。我使用ViewController slide animation
找到了解决方案 如马特所建议。因此,使用扩展名中的扩展名+ animateToTab函数并更改我的滑动方法,即可按预期工作。
@objc func swiped(_ gesture: UISwipeGestureRecognizer) {
if (CanChangeTab) {
let thisTabController = self.tabBarController as! iBayTabController
thisTabController.prevIndex = (thisTabController.selectedIndex)
if gesture.direction == .left {
if thisTabController.selectedIndex < 4 { // set your total tabs here
thisTabController.animateToTab(toIndex: thisTabController.selectedIndex+1)
}
} else if gesture.direction == .right {
if (self.tabBarController?.selectedIndex)! > 0 {
thisTabController.animateToTab(toIndex: thisTabController.selectedIndex-1)
}
}
}
}