swift setter和getter方法的使用

 privatevar_backGroundColor :String?

    varbackGroundColor :String?{

        get{

            return _backGroundColor

        }

        set{

            _backGroundColor= newValue

        }

    }

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