gpt4 book ai didi

ios - 为什么我的按钮上的 addTarget 功能不起作用?

转载 作者:行者123 更新时间:2023-12-01 17:35:33 25 4
gpt4 key购买 nike

一旦点击按钮,我正在实现一些要调用的函数,但函数的主体不会被调用。
这是我的代码,它演示了我需要做什么

let editProfileFollowButton: UIButton = {
let button = UIButton(type: .system)
button.setTitle("Edit Profile", for: .normal)
button.setTitleColor(.black, for: .normal)
button.titleLabel?.font = UIFont.boldSystemFont(ofSize: 14)
button.layer.borderColor = UIColor.lightGray.cgColor
button.layer.borderWidth = 1
button.layer.cornerRadius = 3
button.addTarget(self, action: #selector(handleEditProfileOrFollow), for: .touchUpInside)
return button
}()
@objc func handleEditProfileOrFollow () {
print("Execute edit profile or follow ")
}

这就是我的初始化中发生的事情
addSubview(editProfileFollowButton)
editProfileFollowButton.setAnchor(top: postsLabel.bottomAnchor, left: postsLabel.leftAnchor, right: followingLabel.rightAnchor, bottom: nil, paddingBottom: 0, paddingLeft: 0, paddingRight: 0, paddingTop: 2, height: 34, width: 0)
}

PS:setAnchor 是我创建的一个函数,用于以编程方式设置 View 的约束

最佳答案

从您显示的代码中,最明显的是您使用了 let
在使用闭包风格构建带有 Action 的变量时,我一直认为应该使用 lazy var实例化。这被用作(我相信)self在编译时未知。

lazy var editProfileFollowButton: UIButton = {
let button = UIButton(type: .system)
button.setTitle("Edit Profile", for: .normal)
button.setTitleColor(.black, for: .normal)
button.titleLabel?.font = UIFont.boldSystemFont(ofSize: 14)
button.layer.borderColor = UIColor.lightGray.cgColor
button.layer.borderWidth = 1
button.layer.cornerRadius = 3
button.addTarget(self, action: #selector(handleEditProfileOrFollow), for: .touchUpInside)
return button
}()
@objc func handleEditProfileOrFollow () {
print("Execute edit profile or follow ")
}

使用 lazy var是一个属性,其初始值直到第一次使用时才计算出来。 ( Source)

关于ios - 为什么我的按钮上的 addTarget 功能不起作用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60127494/

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