【swift】private(set) var
示例代码
private(set) var isConnecting: [CBPeripheral : Bool] = [:]
说明:
除了使用函数做为获取接口的方法外,在swift中给出了private(set)申明的方式来限制外部对属性的修改.但在当前文件中依然可改.
例:private(set) var name : String?
- 这个有点像是OC中的在接口文件中使用onlyread,然后在实现文件中使用writeread
示例代码
private(set) var isConnecting: [CBPeripheral : Bool] = [:]
说明:
除了使用函数做为获取接口的方法外,在swift中给出了private(set)申明的方式来限制外部对属性的修改.但在当前文件中依然可改.
例:private(set) var name : String?