I've got an application which runs as a normal app but also has a NSStausItem. I wanted to implement the ability to set in the preferences a checkbox and when this checkbox is turned on the status item should be shown, but when the checkbox is off the status item should be removed or invisible.

I found someone facing a similar problem in this forum at this link: How do you toggle the status item in the menubar on and off using a checkbox?

But the problem I have with this solution is that it just works at runtime. So I make this checkbox and all works fine, but when I open the application a second time the app does not recognize the choice I took at the first run. This is because the checkbox isn't bound to a BOOL or something, the checkbox only has an IBAction, which removes or adds the status item at runtime.

So my question is: how can I make a checkbox in the preferences which allows me to choose whether the status item should show up or not.


Ok actually i tried the following i copied the from the post i gave you the link

In AppDelegate.h :

 NSStatusItem *item;
NSMenu *menu;
IBOutlet NSButton myStatusItemCheckbox;

and then in the Delegate.m :

- (BOOL)createStatusItem
{
NSStatusBar *bar = [NSStatusBar systemStatusBar];

//Replace NSVariableStatusItemLength with NSSquareStatusItemLength if you
//want the item to be square
item = [bar statusItemWithLength:NSVariableStatusItemLength];

if(!item)
  return NO;

//As noted in the docs, the item must be retained as the receiver does not 
//retain the item, so otherwise will be deallocated
[item retain];

//Set the properties of the item
[item setTitle:@"MenuItem"];
[item setHighlightMode:YES];

//If you want a menu to be shown when the user clicks on the item
[item setMenu:menu]; //Assuming 'menu' is a pointer to an NSMenu instance

return YES;
}


- (void)removeStatusItem
{
NSStatusBar *bar = [NSStatusBar systemStatusBar];
[bar removeStatusItem:item];
[item release];
}


- (IBAction)toggleStatusItem:(id)sender
{
BOOL checked = [sender state];

if(checked) {
  BOOL createItem = [self createStatusItem];
  if(!createItem) {
    //Throw an error
    [sender setState:NO];
  }
}
else
  [self removeStatusItem];
}

then in the IBaction i added this one :

[[NSUserDefaults standardUserDefaults] setInteger:[sender state]
                                               forKey:@"MyApp_ShouldShowStatusItem"];

and in my awakefromnib i added this one : `

NSInteger statusItemState = [[NSUserDefaults standardUserDefaults] integerForKey:@"MyApp_ShouldShowStatusItem"];
 [myStatusItemCheckbox setState:statusItemState];

Then in the interface builder i created a new checkbox connected it with "myStatusItemCheckbox" and gave her the IBaction also i clicked on the bindings inspector and set in the value the following bind to : NSUserDefaultController and as ModelKeyPath i set: MyApp_ShouldShowStatusItem. Unfortunately this doesnt work at all what am i doing wrong ?

link|improve this question

0% accept rate
Thanks for your more focused reposts; I've changed some of the tags on your question to [objective-c] and [cocoa]. This will make the question more likely to be read by others. I've also written an answer which I hope is helpful. – Jacques Cousteau Apr 22 '11 at 19:48
feedback

1 Answer

What you need to do is to use the User Defaults system. It makes it very easy to save and load preferences.

In the button's action, you will save its state:

- (IBAction)toggleStatusItem:(id)sender {

    // Your existing code...

    // A button's state is actually an NSInteger, not a BOOL, but
    // you can save it that way if you prefer
    [[NSUserDefaults standardUserDefaults] setInteger:[sender state]
                                               forKey:@"MyApp_ShouldShowStatusItem"];
}

and in your app delegate's (or another appropriate object) awakeFromNib, you will read that value back out of the user defaults:

 NSInteger statusItemState = [[NSUserDefaults standardUserDefaults] integerForKey:@"MyApp_ShouldShowStatusItem"];
 [myStatusItemCheckbox setState:statusItemState];

and then make sure to call removeStatusItem if neccessary.

This procedure will apply to almost any preference you might want to save.

link|improve this answer
Thanks a Lot i will give this a Try later on ;) – David Ehlen Apr 22 '11 at 19:47
1  
You also need to use the value. Rather than keeping the value in and retrieving it from the checkbox, the controller should own the knowledge of whether the status item should be in the status bar directly. Since this is a binary choice, it should be a Boolean value, and the controller should store it as such in the defaults and set the checkbox to either NSOnState or NSOffState based on the Boolean value. (NSOnState and YES happen to be defined to the same number, and the same for NSOffState and NO, but clarity and explicitness are virtues.) – Peter Hosey Apr 23 '11 at 2:27
feedback

Your Answer

 
or
required, but never shown

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