Grigori Jlavyan
Grigori Jlavyan

Reputation: 1971

'unable to dequeue a cell with identifier <addressCell>

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

Answers (1)

user965972
user965972

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

Related Questions