在Swift 4遷移之後,我的NSTreeController項目在啓動時崩潰。我將它簡化爲將@objc轉換爲我的動態數組。有沒有人有任何想法,爲什麼它不斷導致崩潰? @objc dynamic var nodes =[Node]() // The @objc is causing the crash
我正在使用Swift 4 for macOS,並且我的每個循環都有問題。 我的代碼: var dict = [String:Int]()
for x in 0 ..< 5 {
if !dict.keys.contains("\(x)") {
print("NEW KEY: \(x)")
dict = ["\(x)" : x]
}
}
print