ios - swift如何对按钮添加点击触发事件,我这样写没有用啊
PHP中文网
PHP中文网 2017-04-17 17:48:28
0
2
347

PHP中文网
PHP中文网

认证高级PHP讲师

reply all(2)
小葫芦

Which version of swift is yours? If it is 2.2:

button.addTarget(self, action: #selector(buttonTapped), forControlEvents: .TouchUpInside)

If it is a version before 2.2:

button.addTarget(self, action: "buttonTapped:", forControlEvents: .TouchUpInside)

I haven’t tested the specific syntax, but it should be roughly like this.

刘奇

Refer to the following code

import UIKit

class BaseViewController: UIViewController {

    let button = UIButton(frame: CGRect(x: 100, y: 150, width: 120, height: 50))
    
    override func viewDidLoad() {
        super.viewDidLoad()
        
        button.backgroundColor = UIColor.blueColor()
        button.setImage(UIImage(named: "2.jpg"), forState: .Highlighted)
        button.addTarget(self, action: #selector(buttonTapped(_:)), forControlEvents: .TouchUpInside)
        view.addSubview(button)
    }
    
    func buttonTapped(sender: UIButton) {
        print("hello")
    }

}
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template