【发布时间】:2017-06-12 16:47:07
【问题描述】:
我正在使用 iCarousel,我必须创建自己的按钮。我想将数据从以编程方式制作的按钮传递到另一个视图,但我没有 segue 标识符,因为我以编程方式创建了按钮。我不知道是否可以通过编程方式创建 segue 的标识符。
button.addTarget(self, action: #selector(buttonAction3), for: .touchUpInside)
button.setTitle("\(titulos[index])", for: .normal)
tempView.addSubview(button)
let myImage = UIImage(named: "modo4.png") as UIImage?
button.setImage(myImage, for: .normal)
let viewController:UIViewController = UIStoryboard(name: "Main", bundle: nil).instantiateViewController(withIdentifier: "modo") as! Modo1ViewController
self.present(viewController, animated: false, completion: nil)
if segue.identifier == "" {
if let destination = segue.destination as? Modo1ViewController {
destination.nomb = nombres
}
}
【问题讨论】:
标签: swift button segue programmatically-created