Reputation: 14834
Is there a similar to NSBox class from AppKit for MAC in UIKit for iPad?
Upvotes: 3
Views: 855
Reputation: 8846
Not really. You will have to customize a UIView, but its not that hard. You can easily make a UIView that looks completely identical, and the best part is that when you remove the uiview, all the containing items inside it are removed.
in effect, all items (like uibutton and uiscrollview) are actually children of UIview.
Upvotes: 2