「Swift入門」Setter、Getterを利用するサンプル
サンプルコード
class Test { var city = "yokohama" var cft: String { get { return self.city } set(city) { self.city = xxxx //some code } } }
Coding Changes the World
サンプルコード
class Test { var city = "yokohama" var cft: String { get { return self.city } set(city) { self.city = xxxx //some code } } }