How to create custom interface plugins for iPhone?

I'm just starting out with developing iPhone, and I would like to be able to create user interface elements that can be dragged into an application in Interface Builder. How to create custom plugins like this for Interface Builder for iPhone?

+7
iphone xcode interface-builder
source share
1 answer

I'm sure Interface Builder plugins are not supported (yet?) For iPhone OS, so what you want is currently not possible. You can create custom objects from IB by placing a simple UIView in your interface and setting your class in your own management class. But everything that the user sees in IB will be an empty rectangle, and all configuration must be done in code.

+2
source share

All Articles