gpt4 book ai didi

ios - 按下以编程方式创建的新按钮时如何继续?

转载 作者:搜寻专家 更新时间:2023-10-31 19:30:37 25 4
gpt4 key购买 nike

<分区>

我使用以下代码在 Swift 中以编程方式创建了一个按钮:

    let image = UIImage(named: "pin") as UIImage?
let button = UIButton();
button.setTitle("Add", forState: .Normal)
button.setTitleColor(UIColor.blueColor(), forState: .Normal)
button.setImage(image, forState: .Normal)
button.frame = CGRectMake(15, -50, 200, 38)
button.center = CGPointMake(190.0, 345.0);// for center
self.view.addSubview(button)

我有一个单独的函数来尝试使用带有标识符 segueOnPin 的 segue:

 @IBAction func segueToCreate(sender: UIButton) {
// do something
performSegueWithIdentifier("segueOnPin", sender: nil)
}

但是,我认为新的 UIbutton 没有正确连接到第二个功能,因为它不工作。我通常将它连接到 StoryBoard 上。但是,新按钮不在 StoryBoard 上,因为它是以编程方式创建的。我该如何解决这个问题?

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