Reputation: 61774
I have very complex cell in UITableView
within UIViewControllerA
. Now I need to use the same cell within UITableView
of UIViewControllerB
.
registerNib:forCellReuseIdentifier
?Upvotes: 2
Views: 74
Reputation: 31486
You mentioned you don't want to use xib
. Storyboards don't support this and therefore the last option you have is to construct your UITableViewCell
in code. With the new Auto Layout anchors, it's not that bad.
Upvotes: 2