UIButton addTarget Selector is not working(UIButton addTarget 选择器不起作用)
问题描述
SquareBox.swift
SquareBox.swift
class SquareBox {
func createBoxes() {
for _ in 0..<xy {
let button = UIButton()
button.backgroundColor = .white
button.setTitleColor(UIColor.black, for: .normal)
button.layer.borderWidth = 0.5
button.layer.borderColor = UIColor.black.cgColor
stack.addArrangedSubview(button)
button.addTarget(self, action: #selector(click(sender:)) , for: .touchUpInside)
}
}
@objc func click(sender : UIButton) {
print("Click")
}
}
ViewController.swift
ViewController.swift
class GameViewController: UIViewController {
override func viewDidLoad() {
super.viewDidLoad()
let boxRow = SquareBox()
boxRow.createBoxes()
}
}
我也尝试过@IBAction 而不是@objc,它不起作用,但是如果我在创建这个对象的 ViewController.swift 中使用click"函数,它可以工作,但我需要在这个类中使用这个函数.
Also I've tried @IBAction instead of @objc, it doesn't work, but if I use "click" function in ViewController.swift that I created this object, it's working but I need this function inside of this class.
推荐答案
既然您已经在问题中发布了相关信息,那么问题就很清楚了.您遇到了内存管理问题.
Now that you have posted relevant information in your question, the problem is quite clear. You have a memory management issue.
在您的 GameViewController 的 viewDidLoad 中,您创建 SquareBox 的本地实例.此本地实例在 viewDidLoad 结束时超出范围.由于没有其他对该实例的引用,它在 viewDidLoad 结束时被释放.
In your GameViewController's viewDidLoad you create a local instance of SquareBox. This local instance goes out of scope at the end of viewDidLoad. Since there is no other reference to this instance, it gets deallocated at the end of viewDidLoad.
由于 SquareBox 的实例已被释放,它不再充当按钮的目标.而且您的 click 方法永远不会被调用.
Since the instance of SquareBox has been deallocated, it is not around to act as the button's target. And your click method is never called.
解决方案是在视图控制器中保留引用:
The solution is to keep a reference in your view controller:
class GameViewController: UIViewController {
let boxRow = SquareBox()
override func viewDidLoad() {
super.viewDidLoad()
boxRow.createBoxes()
}
}
这篇关于UIButton addTarget 选择器不起作用的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:UIButton addTarget 选择器不起作用
- 类似于 Mail.app 的 iPad 模态视图控制器? 2022-01-01
- URL编码Swift iOS 2022-01-01
- Xcode 7.3 中带有 UILabel 的 UIStackView 2022-01-01
- 网上有没有好的 UIScrollView 教程? 2022-01-01
- 在 Iphone SDK 的导航栏上添加多个按钮 2022-01-01
- 如何在 iPhone 模拟器中重置 NSUserDefaults 数据? 2022-01-01
- UITextView 内容插图 2022-01-01
- GPS状态的广播接收器? 2022-01-01
- 使用自动布局向 UIScrollView 添加动态大小的视图 2022-01-01
- SetOnItemSelectedListener上的微调程序错误 2022-01-01
