vote up 2 vote down star

I have a statusItem in the StatusBar. I've retained a reference to it in my class. Now, I want to update the image of the item. In order to this, I wrote a method similar to:

-(void)updateStatusIcon:(NSString *)newImage
{
    [statusItem setImage:[NSImage imageNamed:newImage]];
}

The image is a valid icon and works when I set it initially so I know the image is fine. When this code executes, the statusItem disappears from the StatusBar completely.

Any idea what the best way to update the image on a NSStatusItem is?

flag

Are you sure you are getting the value you are expecting in newImage parameter? – Pablo Santa Cruz May 14 at 1:45
Yes, I am sure. – psychotik May 14 at 1:54
It appears you've flagged Marc's response as an answer. Would you mind explaining how you fixed this issue? – Brian Cline Jul 12 at 6:36
I was just doing something silly in my code - the snippet above correct once I fixed paths to the new image. – psychotik Jul 15 at 17:27

1 Answer

vote up 0 vote down check

That's the correct way to set the status item image. There's a problem either with your image or somewhere else in your code.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.