Search code examples
uitableviewxcode5uistoryboard

Use Prototype Cell From Another View Controller


I want to use the same table view cell layout in several storyboard scenes. Can I design the prototype cell in one of the scenes and somehow access it (i.e. dequeueReusableCellWithIdentifier) in another table view controller?


Solution

  • This is not possible, but you can copy the prototype cell from source table view to destination one inside storyboard and you can easily reuse it.