Reputation: 1971
Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'unable to dequeue a cell with identifier addressCell - must register a nib or a class for the identifier or connect a prototype cell in a storyboard'
Upvotes: 0
Views: 161
Reputation: 2587
The tableview has no cell registered under the name you have provided. You have to set the identifier of the cells in interface builder or you have to programmatically register nibs with the tableview.
Upvotes: 2