gpt4 book ai didi

swift - 从 UICollectionViewCell 类 Swift 转到 ViewController

转载 作者:行者123 更新时间:2023-11-30 14:14:49 26 4
gpt4 key购买 nike

如何从 UICollectionViewCell 类转到 UIViewController?

这是我的 UICollectionViewCell 类:

class GalleryItemCollectionViewCell: UICollectionViewCell,UIAlertViewDelegate 
{
@IBAction func gotoView(sender: AnyObject)
{
//I Want To Do It HERE...
}
}

最佳答案

self..window.rootViewController.performSegueWithIdentifier("nameOfSegueInStoryboard", sender: self)

这将转换到您选择的 View Controller 。要更改该 View Controller 中的变量,您可以在包含 Collection View 的 View Controller 下使用 prepareForSegue 方法:

    override func prepareForSegue(segue: UIStoryboardSegue, sender: AnyObject?) {
if segue.identifier == "nameOfSegueInStoryboard" {
let controller = segue.destinationViewController as! NameOfYourViewController
controller.variable_name = new_value
}
}

这一切都依赖于您添加从第一个 View Controller 到另一个 View Controller 的转场,并在 Storyboard中为其提供标识符。

关于swift - 从 UICollectionViewCell 类 Swift 转到 ViewController,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31323440/

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