So I read about Interface Builder Plug-Ins but from what I understood they’re not supported on IPhone on the MAC.
Basically I want to create a User Control (this is a .NET term) is this possible in iPhone development? A user control is basically like me trying to create my own custom button, or own custom slider, etc so that it is easily re-usable.
Any suggestions? thanks!
It’s easier than you think, actually. While you can’t make your own “User Control” so to speak, you can actually customize the appearance of almost every UIKit control anyway, such as custom buttons, and editing text field properties and fonts, etc. You could make a view with this in it, and add it to a parent view at runtime if you so desired. It can be used multiple times, or you can just customize them individually as you need them, which is how I prefer because of the simplicity.