I found several tutorials that describe the ability to add NSImageView
using Interface Builder in the same way you can add UIImageView
in iOS.
However, in Xcode 4.1, controls do not seem to exist. I can create NSImageView
programmatically, but it is not very practical for very graphical interfaces. I have something called IKImageView
, but with this I can not set the contents of the image through the interface constructor.
Is there any way to display NSImageView
in Interface Builder?
Thanks.
source share