swift setter 和 getter方法的使用

private var _backGroundColor : String?
    var backGroundColor : String?{
        get{
            return _backGroundColor
        }
        set{
            _backGroundColor = newValue
        }
    }

你可能感兴趣的:(swift setter 和 getter方法的使用)