gpt4 book ai didi

uiviewcontroller - 使用 Swift 从一个 ViewController 滑动到另一个

转载 作者:行者123 更新时间:2023-11-28 09:20:06 25 4
gpt4 key购买 nike

我目前正在尝试使用 Swift 将不同的 ViewController 彼此连接起来,但我被卡住了,希望得到一些帮助才能继续。

我现在拥有的是一个主视图,当您向右滑动时,您将进入另一个 View (就像 Snapchat 一样)。我已经使用找到的教程完成了此操作 here .

基本上,我有一个 ContainerViewController,它在其 View 层次结构中存储两个 subview 。因此,我可以在 subview 1 和 subview 2 之间来回滑动(请参见插图了解一个想法)。 subview 2 有一个“模态”加载另一个 ViewController 的按钮。我的问题是,如果可能的话,我怎样才能做到当我在“模态 ViewController”中向左滑动时,我会滑动回到 subview 1?

Image

这是我控制从 Subview 2 (BViewController) 到模态 ViewController (InfoVC) 的转换的代码:

class BViewController: UIViewController, UITabBarDelegate {

@IBOutlet var item: UIBarButtonItem!
var info: InfoVC = InfoVC(nibName: "InfoVC", bundle: nil )

func tabBar( tabBar: UITabBar!, didSelectItem item: UITabBarItem!){
if item.tag == 2{ // we are in new view controller
info.modalTransitionStyle = UIModalTransitionStyle.CrossDissolve
self.presentViewController(info, animated: true, completion: nil)
}
}

override func viewDidLoad() {
super.viewDidLoad()
// Do any additional setup after loading the view, typically from a nib.
println("info hash \(info.hashValue)")
}

override func didReceiveMemoryWarning() {
super.didReceiveMemoryWarning()
// Dispose of any resources that can be recreated.
}


}

这是我的 ContainerViewController 类,其中创建了 ScrollView /滑动机制。

class ContainerViewController: UIViewController {

// Outlet used in storyboard
@IBOutlet var scrollView: UIScrollView?;

override func viewDidLoad() {
super.viewDidLoad();

// 1) Create the three views used in the swipe
var AVc: AViewController = AViewController(nibName: "AViewController", bundle: nil)
var BVc: BViewController = BViewController(nibName: "BViewController", bundle: nil)

// 2) Add in each view to the container view hierarchy
// Add them in opposite order since the view hieracrhy is a stack

self.addChildViewController(BVc);
self.scrollView!.addSubview(BVc.view);
BVc.didMoveToParentViewController(self);

self.addChildViewController(AVc);
self.scrollView!.addSubview(AVc.view);
AVc.didMoveToParentViewController(self);

// 3) Set up the frames of the view controllers to align
// with eachother inside the container view
var adminFrame :CGRect = AVc.view.frame;
adminFrame.origin.x = adminFrame.width;
BVc.view.frame = adminFrame;

var BFrame :CGRect = BVc.view.frame;
BFrame.origin.x = 2*BFrame.width;

// 4) Finally set the size of the scroll view that contains the frames
var scrollWidth: CGFloat = 2 * self.view.frame.width
var scrollHeight: CGFloat = self.view.frame.size.height
self.scrollView!.contentSize = CGSizeMake(scrollWidth, scrollHeight);
}

override func didReceiveMemoryWarning() {
super.didReceiveMemoryWarning()
// Dispose of any resources that can be recreated.
}
}

总结:

我已经可以做的是从 AViewController 滚动到 BViewController(来回),然后通过按选项卡栏项目/按钮从 BViewController 转到 InfoVC。然后我无法弄清楚的是在 InfoVC 中向后滑动并到达 AViewController,其转换与我在 AViewController 和 BViewController 之间滑动时相同。

最佳答案

您需要将 UISwipeGestureRecognizer 添加到您的 InfoVC。在 Interface Builder 中,最简单的方法是将对象库中的一个拖到 InfoVC 上。您会在 IB 场景顶部的工具栏中看到一个新图标。选择它,然后在属性检查器中,选择您希望滑动的方向——在您的情况下,它可能是从左到右。

接下来,在您的 InfoVC 中实现 touchesBegan()touchesEnded() 方法,并使用事件的位置来确定用户是否滑动了您指定的距离在起点和终点之间。如果 touchesEnded() 至少有那个距离,那么您可以通过将其从其父级 BViewController 中移除来关闭您的 InfoVC。

关于uiviewcontroller - 使用 Swift 从一个 ViewController 滑动到另一个,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25491513/

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