Coming from the .NET world into ObjC and iPhone development, I’m used to providing design-time support for my UI classes. For example, say that I have a custom button class with a color property. I want to be able to set this color in design time from IB. How can I accomplish this? Is it even possible? Worth the effort?
Coming from the .NET world into ObjC and iPhone development, I’m used to providing
Share
It isn’t possible to create custom IB plugins for iOS. The best you can do is use a generic
UIViewwith a custom class in your nib and set the properties programatically.