Reputation: 477
What is the best control to use in a Mac OS app to handle showing a single image? I need to be able to show and hide it programmatically, too.
Upvotes: 0
Views: 664
Reputation: 22930
You should refer Image Views guide and NSImageView Class Reference.
Upvotes: 0
Reputation: 49034
NSImageView
. It has a setHidden:
method, which you can use to hide it if needed.
Upvotes: 4