我有升級SWIFT 2.3 SWIFT 3,我得到這個錯誤問題上不明確的參考成員「下標」 swift3
曖昧參考成員「下標」 swift3
這裏代碼
var cellDescriptors: [[String:Any]]!
func loadCellDescriptors() {
if let path = Bundle.main.path(forResource: "ProfileDescriptor", ofType: "plist") {
cellDescriptors = NSMutableArray(contentsOfFile: path)
getIndicesOfVisibleRows()
tableView.reloadData()
}
}
if cellDescriptors[indexPath.section][indexOfTappedRow]["isExpanded"] as! Bool == false {
shouldExpandAndShowSubRows = true
}
我得到的錯誤在這條線
if cellDescriptors[indexPath.section][indexOfTappedRow]["isExpanded"] as! Bool == false
給我任何建議,我怎麼能解決這個
感謝您的回覆,但我已經嘗試過,但它不工作 –
沒有解決得到錯誤 –
是的但不工作 –