Yo estoy siguiendo un Swift3 tutorial con un toque gesto de reconocimiento en XCode8. Se ejecuta en el iPhone simulator, el toque caso es que al parecer nunca disparó cuando el uso del ratón haga clic en:
// MARK: Initialization
required init?(coder aDecoder: NSCoder) {
super.init(coder: aDecoder)
let button = UIButton(frame: CGRect(x: 0, y: 0, width: 44, height: 44))
button.backgroundColor = UIColor.red
button.addTarget(self, action: #selector(RatingControl.ratingButtonTapped(_:)), for: .touchDown)
addSubview(button)
}
// MARK: Button Action
func ratingButtonTapped(_ sender: UIButton) {
print("Button pressed