覆盖swift 2.2中的超类实例成员

时间:2016-10-11 08:32:26

标签: swift

我有一个UIView子类,我试图覆盖子类中的userInteractionEnabled属性。我的代码如下:

 override var userInteractionEnabled:Bool  {

    didSet {

           if !userInteractionEnabled {
                topLeftPoint.hidden = true
                bottomLeftPoint.hidden = true
                bottomRightPoint.hidden = true
                topRightPoint.hidden = true
            }
            super.userInteractionEnabled = userInteractionEnabled
        }
    }

我收到编译错误

  

'预期'get','set','willSet'或'didSet'关键字来启动   访问者定义'

我做错了什么?

0 个答案:

没有答案