UIView中的按钮没有响应

时间:2016-02-13 03:13:14

标签: swift button uiview

我试图自己学习swift并遵循Apple开发人员教程(是的,我也在观看youtube vids,但试图从各方面学习)。

我已经["实施自定义控件"并在此时复制并粘贴自定义视图中的所有代码

import UIKit

class starRating: UIView {

    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.redColor()
        button.addTarget(self, action: "ratingButtonTapped:", forControlEvents: .TouchDown)
        addSubview(button)
    }

    func ratingButtonTapped(button: UIButton) {
        print("Button pressed ")
    }
}

并且已经跟踪了所有步骤,并且嵌套在视图中的按钮没有响应。用户交互已启用

我真的不知道自己做错了什么

请帮忙! 谢谢

0 个答案:

没有答案