How can you create a custom object in the Interface Builder object palette?

I am trying to create a custom object and display it in the objects palette so that I can drag it into the .xib file when I create the iOS application. I cannot find any tutorials or instructions on the Internet on how to do this; Apple removed this functionality? Any help would be greatly appreciated.

+3
source share
1 answer

You cannot add custom plugins when using the iOS platform. This is possible for the normal development of MacOS, but, unfortunately, not for iOS. If, however, you have offspring of a UIView, drag the normal UIView onto the screen and change the class to your custom class to use it. Otherwise, you will not get a time view for the custom control ... :(

+4
source

All Articles