user523234
user523234

Reputation: 14834

What is the equivalent NSBox from AppKit to be used in Cocoa Touch environment?

Is there a similar to NSBox class from AppKit for MAC in UIKit for iPad?

Upvotes: 3

Views: 855

Answers (1)

Nils Munch
Nils Munch

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

Related Questions