Developer Question: NS ImageView
Since there doesn't seem to be a dev forum here, I thought i'd post it in Mac OS X since thats what I'm developing in,
.
Right, im quite a Interface Builder newb and am wondering this...
I have a custom view, I then change its class in IB to NS ImageView.
Then I got stuck, how do I insert an image in NS ImageView.
I am using Applescript to develop the app.
Thanks

Right, im quite a Interface Builder newb and am wondering this...
I have a custom view, I then change its class in IB to NS ImageView.
Then I got stuck, how do I insert an image in NS ImageView.
I am using Applescript to develop the app.
Thanks
Comments
In cocoa, you need an NSImage and then you can set that into an NSImageView with:
[NSImageView setImage:NSImage]
Right now all I have done is tick the appropriate Applescript, is there anything else I should do?