繁体   English   中英

Swift UIButton addTarget自动启动

[英]Swift UIButton addTarget launch automattically

我有我在的UIButton addTarget一个小问题。 当我运行我的应用程序时,我的功能会自动启动,而必须按下UIButton才能启动它。 我不知道我的问题在哪里。

我的按钮

let BTN_happy : UIButton = UIButton()
    BTN_happy.frame = CGRectMake(0, rowHeight * 1, fullWidth, rowHeight)
    BTN_happy.backgroundColor = UIColor(hexString: "#ff3b30")
    BTN_happy.addTarget(self, action: Selector(data("Happy")), forControlEvents: .TouchUpInside)

    self.view.addSubview(BTN_happy)
    text("Happy", button: BTN_happy)

我的功能

func text(text: String, button: UIButton) {

        let txt : UILabel = UILabel()
        txt.text = text.uppercaseString
        txt.frame = CGRectMake(20, 0, fullWidth - 40, button.bounds.size.height)
        txt.textColor = UIColor(hexString: "#ffffff")
        txt.font = UIFont.systemFontOfSize(30, weight: UIFontWeightHeavy)
        txt.shadowOffset = CGSize(width: 2, height: 2)
        txt.shadowColor = UIColor(hexString: "#000000", alpha: 0.3)

        button.addSubview(txt)

    }

    func data(mood: String) {
        NSLog("Mood: \(mood)")
    }

预先感谢您的回复。

您不能以这种方式添加选择器。 您需要像这样更改它:

myBTN.addTarget(self, action: Selector("data:"), forControlEvents: .TouchUpInside)

还要更改方法签名,例如:

func data(sender: UIButton)
{
   NSLog("Button clicked")
}

为了解决我的问题,我在UIButton中使用标记。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM