ios開發,cell輸出數據的時候出現問題 ios
Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'unable to dequeue a cell with identifier Cell - must register a nib or a class for the identifier or connect a prototype cell in a storyboard' app
解決方法: ide
聲明 表格 的時候,加上下面這行代碼就好了
表格?.registerClass(UITableViewCell.self, forCellReuseIdentifier: "你的cell identifier")
spa