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 选择器不起作用
基础教程推荐
- iOS4 创建后台定时器 2022-01-01
- Cocos2d iPhone 非矩形精灵触摸检测 2022-01-01
- navigator.geolocation.getCurrentPosition 在 Android 浏览器上 2022-01-01
- AdMob 广告未在模拟器中显示 2022-01-01
- 如何从 logcat 中删除旧数据? 2022-01-01
- NSString intValue 不能用于检索电话号码 2022-01-01
- 通过重定向链接在 Google Play 中打开应用 2022-01-01
- iPhone - 获取给定地点/时区的当前日期和时间并将其与同一地点的另一个日期/时间进行比较的正确方法 2022-01-01
- libGDX 从精灵或纹理中获取像素颜色 2022-01-01
- Android:getLastKnownLocation(LocationManager.NETWORK_PROVIDER 2022-01-01
