user820739
user820739

Reputation:

How to make customUI objects in xcode 4 for iPhone

I want to know how to make custom UI objects in iPhone ?

this is where it shows the list of custom objects

Upvotes: 6

Views: 1194

Answers (1)

You can't do custom objects for iPhone development yet. That's for Mac development.

The closest you can get is to program your own custom component based on a UIView, then place a UIView in IB and change the type to your custom component. It will then let you do any wiring needed and at runtime will embed an instance of your own class. You cannot see the component in IB though, only an empty UIView....

Upvotes: 6

Related Questions