app-architecture icon indicating copy to clipboard operation
app-architecture copied to clipboard

MVC 模式下setName的时候更新有误

Open tekizhong opened this issue 6 years ago • 0 comments

FolderViewController.swift 中 if let changeReason = userInfo[Item.changeReasonKey] as? String { let oldValue = userInfo[Item.newValueKey] let newValue = userInfo[Item.oldValueKey] 应改为: if let changeReason = userInfo[Item.changeReasonKey] as? String { let oldValue = userInfo[Item.newValueKey] let newValue = userInfo[Item.oldValueKey]

tekizhong avatar Jul 09 '19 11:07 tekizhong