Reputation:
So on the App Store, what I'm seeing a lot is a custom UI that still looks like the native Apple ones, but is some how "spruced up" in look. How exactly would I create something like that, as in say a button that is a hexagon or something instead of a rounded rectangle?
Thanks,
VectorWare
Upvotes: 1
Views: 215
Reputation: 24675
Example in code:
[myButton setImage: myImage forState: UIControlStateNormal];
Upvotes: 1
Reputation: 52778
They are probably either subclass' of UIView/UIWhatever or images with a transparent UIButton over top of the image. Is there something specific you want to implement?
Some examples: Subclassing a UIView
Upvotes: 0