- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我为我的 tableView
创建了一个自定义单元格类,我创建了两个按钮,一个是减号按钮,一个是加号按钮。我写了一个函数,我想对两个按钮使用相同的函数。这就是我现在拥有的:
private let decreaseButton: UIButton = {
let btn = UIButton(type: .custom)
btn.setImage(UIImage(named: "minusIcon"), for: .normal)
btn.imageView?.contentMode = .scaleAspectFit
btn.addTarget(self, action: #selector(ChangePlayerRank), for: .touchUpInside)
return btn
}()
这是 ChangePlayerRank:
@objc func ChangePlayerRank(){
print("BUTTON WORK")
}
单击按钮时,它不会检测到它。另外,我如何检测我拥有的两个按钮中的哪一个(减少和增加),并且根据单击哪个按钮,该方法将减少一个点或增加一个点?我尝试了哪个发件人和标签,但没有用。
最佳答案
需要添加一个参数,为按钮设置2个不同的标签
@objc func changePlayerRank(_ bt:UIButton) {
if bt.tag == 10 { // minus // or bt == decreaseButton ( without tags )
else { // plus
}
}
访问self
lazy var decreaseButton: UIButton = {
关于swift - 按钮不工作,没有检测到点击,并检测点击了哪个按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55551565/
我正在制作一个应用程序来计算距离和面积,现在问题是我制作了一个数组并在其中附加了我的节点。 func calculate () { let start = dotNodes[0] le
在我的 Eclipse 上,双分隔符使用逗号而不是点,我想将其更改为逗号,但我不知道如何更改。代码本身如下: double latitudeBerlin = 52.51217; double long
我想知道,如果: string name_a; string name_b; 将有一些已经存在的函数可以让我比较两个字符串的一定数量的字符like strncmp() ,但来 self 的 strin
我在 X 轴上有点,我想从每个点到另一个点 (X2,Y2) 做直线。 此代码适用于从 Y=35 到 X 点 (P) 的蓝线,并且它有效 pos_fixed = np.array([0, TR]) li
我必须返回以度为单位的角度,它应该在 0 到 360(含)之间的范围内。我必须使用 math.h 库中的函数 acos()、asin() 和 atan()。在我的说明中,它说根据该点所在的象限,计算可
请考虑以下说明我的问题的简化示例: 主窗口.xaml 主窗口.xaml.cs using System; using System.Windows; using System.Windo
我是一名优秀的程序员,十分优秀!