How to create customUI objects in xcode 4 for iPhone

I want to know how to create user interface objects in iPhone?

this is where it shows the list of custom objects

+6
source share
1 answer

You cannot create custom iPhone development objects yet. This is for the development of Mac.

Closest you can program your own custom component based on UIView, and then put the UIView in IB and change the type to your custom component. Then it will allow you to make any necessary posting and at runtime will embed an instance of your own class. You do not see the component in IB, though, only an empty UIView ....

+6
source

Source: https://habr.com/ru/post/891933/


All Articles