gpt4 book ai didi

ios - (Swift)需要逐步了解如何在 View Controller 之间滑动

转载 作者:行者123 更新时间:2023-11-30 13:15:17 24 4
gpt4 key购买 nike

我尝试过很多不同的博客和视频教程,它们都非常复杂。我无法想象这项技术像看起来那么难。这些是我的 View Controller : enter image description here

我想要的只是签名后,我的应用程序转到中间 View Controller (主 Controller )。然后,我希望能够左右滑动到相邻的 View Controller 。我已经尝试了很多关于 UIPageViewControllers 和 UIScrollViews 的教程,但没有成功。我已经有了这些 View Controller ,我只需要一种简单的方法在它们之间滑动。我觉得这应该很简单,但我观看的每个视频都是关于如何使用 UIPageViewController 在应用程序中制作教程。我只需要通过滑动来导航这 3 个 View Controller 。

任何帮助将不胜感激。

最佳答案

如果您想使用 UISwipeGesture 实现此目的,那么您可以尝试以下代码...

在这里,您只需在 viewDidLoad() 方法中为 self.view 提供动画,这样它看起来就像从一个 Controller 上滑动到另一个 Controller 上一样。

在中间 View Controller 中,您需要检查您从哪个 Controller 推送到 MiddleController,然后根据您的 Controller 放置左或右动画。

override func viewDidLoad()
{
super.viewDidLoad()

self.imgSlideInFromLeft(self.view)

let swipeGesture:UISwipeGestureRecognizer = UISwipeGestureRecognizer(target: self, action: Selector("swipeViewFromLeft:"))
swipeGesture.direction = .Right
swipeGesture.numberOfTouchesRequired = 1
swipeGesture.delegate = self
self.view .addGestureRecognizer(swipeGesture)
}

func imgSlideInFromLeft(view: UIView)
{
let transition:CATransition = CATransition()
transition.duration = 0
transition.timingFunction = CAMediaTimingFunction(name: kCAMediaTimingFunctionEaseInEaseOut)
transition.type = kCATransitionPush
transition.subtype = kCATransitionFromRight
transition.delegate = self
view.layer .addAnimation(transition, forKey: "transition")
}

func swipeViewFromLeft(recognizer : UISwipeGestureRecognizer)
{
let followingController = FollowingController()
self.navigationController!.pushViewController(followingController, animated: false)
}

关于ios - (Swift)需要逐步了解如何在 View Controller 之间滑动,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38299214/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com