标签: json swift realm
问题出在单元格中的显示括号中。示例:
price: ( 12 )
在控制台中,我们看到:
Optional(<__NSArrayM 0x6000025f6d30>( 12 ) )
代码:
if let transaction = transactions?[indexPath.row] { cell.textLabel?.text = " Price: \(bank.parent.value(forKey: "price") ?? "")" }