认证高级PHP讲师
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.
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") } }
Which version of swift is yours? If it is 2.2:
If it is a version before 2.2:
I haven’t tested the specific syntax, but it should be roughly like this.
Refer to the following code