美文网首页
Lesson1 - timer

Lesson1 - timer

作者: 茗涙 | 来源:发表于2018-03-16 14:31 被阅读10次

    效果图

    QQ20180316-115847-HD.gif

    项目代码地址

    问题1:为button添加点击事件报错

    playButton.addTarget(self, action: #selector(playButtonAction), for: UIControlEvents.touchUpInside)
    
    func resetButtonAction() {
     }
    

    错误提示
    Argument of '#selector' refers to instance method 'playButtonAction()' that is not exposed to Objective-C
    Add '@objc' to expose this instance method to Objective-C

    @objc func resetButtonAction() {
     }
    

    原因

    这篇文章讲的还可以

    相关文章

      网友评论

          本文标题:Lesson1 - timer

          本文链接:https://www.haomeiwen.com/subject/qmelqftx.html