是否可以觀察添加到Set
數據結構的值?觀察添加到Set的值 - Swift
我想要實現:
var storedStrings = Set<String>() {
didSet (value) {
// where value is a string that has been added to the Set
}
}
例子:
storedStrings.insert("hello")
didSet叫,作爲一種新的價值已被添加。
storedString.insert("world")
didSet再次調用。
storedString.insert("hello")
didSet不叫,作爲集已經包含字符串「hello」