Reputation: 40247
I want to use a UITableViewController
which has four different type complex cell. Different team members are required to work on different custom UITableViewCell
simultaneously. We are working on Git so to avoid conflicts I have been asked to make four different Storyboards
for four different cell. But I cannot place a cell or simple UIView in different Storyboard
without view controller. Please guide me, how do i implement it.
Please keep in mind that cells will be instantiated and added on runtime
Upvotes: 1
Views: 956
Reputation: 9503
Create xib of your each cell, and register it in your UITableView
, you can use this xib anywhere in your project and with the same CellIdentifier
.
How to Make UITableVIewCEll XIB
Upvotes: 1