Let's say I have an NSImage that's 100x100. I also have an NSImageView that's 50x50. Is there a way I can place the NSImage at coordinates inside the NSImageView, so I can control which part of it shows? It didn't seem like NSImage had an initWithFrame method...
|
|
|
|
|
|
|
I don't believe so, but it's trivial to roll your own NSImageView equivalent that supports center/stretch options by drawing the image yourself. |
||||||
|
|
|
I did this in my NSImageView subclass, as Andrew suggested.
|
||
|
|
|
|
Make your imageview as big as the image, and put it inside a scrollview. Hide the scrollers if you want. No need for subclassing in this case. |
||
|
|
|
|
NSImageView has a method |
||
|
