gpt4 book ai didi

ios - 以编程方式在页面 View Controller 中切换 View Controller | swift

转载 作者:行者123 更新时间:2023-11-30 11:19:35 25 4
gpt4 key购买 nike

我的页面 View Controller 中的 View Controller 中有一个UIButton(也是以编程方式创建的)。我想切换到同一个页面 View Controller 中的另一个 View Controller 。这是我尝试使用的:

@objc func myOpinionAction(_ sender:UIButton!)
{
PageViewController().setViewControllers([suggestionPage()], direction: UIPageViewController.NavigationDirection.forward, animated: true)
}

这个简单的方法不起作用(我正在尝试切换到suggestionPage)我尝试过的另一种方法是:

PageViewController().transition(from: PageViewController().viewControllers![0], to: PageViewController().viewControllers![2], duration: 0.3, options: UIView.AnimationOptions.curveEaseInOut, animations: nil, completion: nil)

这给了我一个Thread 1: signal SIGABRT错误:

class AppDelegate: UIResponder, UIApplicationDelegate {

我的AppDelegate中的第一行代码,我认为这是由于选项问题的展开造成的?有谁知道我如何错误地使用这些函数或有更好的方法来做到这一点?

最佳答案

试试这个

func forward() {
if currentPageIndex < totalPageIndex {
pageController?.setViewControllers([viewControllerAtIndex(index: currentPageIndex + 1)], direction: .forward, animated: true, completion: nil)
}
}

func backward() {
if currentPageIndex > 0 {
pageController?.setViewControllers([viewControllerAtIndex(index: currentPageIndex - 1)], direction: .reverse, animated: true, completion: nil)
}
}

关于ios - 以编程方式在页面 View Controller 中切换 View Controller | swift ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51435004/

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