I have an NSCell and I need to draw an image in its background. For some reason, the image is not being drawn as it's supposed to be. This is the image I want to draw:

correct image

And this is how it's being drawn:

incorrect image

This is my code:

NSImage *img = [NSImage imageNamed:@"leftselected.png"];
[img drawInRect:NSMakeRect(0,0,9,25) fromRect:NSZeroRect operation:NSCompositeSourceOver fraction:1.0];

It's also worth mentioning that I'm running the app on Tiger. I tried using other methods to draw the image with no luck. What am I doing wrong?

link|improve this question

29% accept rate
Just to check, leftselected.png is definitely 9x25px? – deanWombourne Feb 20 at 1:04
Try creating the rect dynamically instead of having it hard-coded. Perhaps the image you're using isn't the same size that you think it is. – sudo rm -rf Feb 20 at 1:48
3  
Make sure the image is being saved as 72dpi, also. – Wevah Feb 20 at 3:40
Wevah, you're right. Please post it as an answer so I can mark it as right. – Fernando Valente Feb 23 at 3:38
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.