I need to create a few Views that are very similar – would it be a good/bad idea just to copy the existing .xib, and then modify the copy? i.e. would that cause circular references or more hassles than it’s worth? If it is worth doing, is there a way to do from within XCode, or do you need to do from terminal/file manager? I am looking for a way to quickly generate very similar views without reconstructing from scratch
Share
You can just instantiate multiple UIViewController instances using the same xib, and then make any changes you want to each instance.
etc…
You can also replace UIViewController with the name of a UIViewController subclass if needed.