swift setter和getter方法的使用
2018-08-31 本文已影响0人
兼人之勇
privatevar_backGroundColor :String?
varbackGroundColor :String?{
get{
return _backGroundColor
}
set{
_backGroundColor= newValue
}
}
privatevar_backGroundColor :String?
varbackGroundColor :String?{
get{
return _backGroundColor
}
set{
_backGroundColor= newValue
}
}