gpt4 book ai didi

ios - Swift 以编程方式向按钮添加显示操作

转载 作者:IT王子 更新时间:2023-10-29 05:17:59 24 4
gpt4 key购买 nike

如何以编程方式向按钮添加操作。我需要向 mapView 中的按钮添加显示操作。谢谢

let button = UIButton(type: UIButtonType.Custom) as UIButton

最佳答案

你可以使用下面的代码
`

let btn: UIButton = UIButton(frame: CGRect(x: 100, y: 400, width: 100, height: 50))
btn.backgroundColor = UIColor.green
btn.setTitle("Click Me", for: .normal)
btn.addTarget(self, action: #selector(buttonAction), for: .touchUpInside)
btn.tag = 1
self.view.addSubview(btn)

行动

 @objc func buttonAction(sender: UIButton!) {
let btnsendtag: UIButton = sender
if btnsendtag.tag == 1 {

dismiss(animated: true, completion: nil)
}
}

关于ios - Swift 以编程方式向按钮添加显示操作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35550966/

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