Search code examples
iosxcodeuitableviewstoryboardxib

Can I replace all xib with storyboard


I wonder if there is any way to replace all xib with storyboard. I am using a tableview which uses a custom cell. Usually all online resources and tutorials guide to make a xib and then load from delegate on a custom cell class. I dont want to use any xib in my project. How can I transfer those cell xib to storyboard and instantiate from there.


Solution

  • After some research and study I found that there is no such functionality in xib which cannot be replaced with storyboard. Thanks to @DonMag for comments and clue.

    The only issue I was facing is to design uitableview cell, but prototype cell design can be used easily from storyboard. Here are some example how to use it.