1
Is there any way to create custom components/screens with some components already loaded? For example, create a UIViewController customized, with some standard elements in it. But in a way that can be added through StoryBoard.
Case study:
Create a UIViewController customized, with two UIButton and a UIImageView default on it. So that I can add this custom controller via StoryBoard.
I would also like to know, in my researches create components and insert them in the standard component palette is not possible, whenever I need some third component I create a cocoapods and put the library’s I need
– Gabriel Rodrigues
You can extend the class
UIViewControllerand create the elements via code or in the storyboard add the elements and just link theIBOutletsso that the operation serves for all screens using this class– Jeferson Assis