我有一个应用程序,它作为普通应用程序运行,但也有一个NSStausItem
。
我希望实现在首选项中设置复选框的功能,当此复选框打开时,应显示状态项,但是当复选框关闭时,状态项应被删除或不可见。
我发现有人在论坛中遇到类似问题:How do you toggle the status item in the menubar on and off using a checkbox?
但是我对这个解决方案的问题是它没有按预期工作。所以我做了这个复选框,一切正常,但是当我第二次打开应用程序时,应用程序无法识别我在第一次运行时所做的选择。这是因为复选框未绑定到BOOL
或其他内容,复选框只有IBAction
,它会在运行时删除或添加状态项。
所以我的问题是:如何在首选项中创建一个复选框,允许我选择状态项是否应该显示。
好吧其实我试过以下我复制了帖子我给你链接
在AppDelegate.h中:
NSStatusItem *item;
NSMenu *menu;
IBOutlet NSButton myStatusItemCheckbox;
然后在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];
}
然后在IBaction中我添加了这个:
[[NSUserDefaults standardUserDefaults] setInteger:[sender state]
forKey:@"MyApp_ShouldShowStatusItem"];
在我的awakefromnib中,我添加了这个:`
NSInteger statusItemState = [[NSUserDefaults standardUserDefaults] integerForKey:@"MyApp_ShouldShowStatusItem"];
[myStatusItemCheckbox setState:statusItemState];
然后在界面构建器中,我创建了一个新的复选框,将其与“myStatusItemCheckbox”连接,并添加了一个IBaction,我也点击了绑定检查器,并在值中设置以下绑定到:NSUserDefaultController
和{{1我设置:ModelKeyPath
不幸的是,这根本不起作用我做错了什么?
答案 0 :(得分:7)
您需要做的是使用User Defaults系统。它使保存和加载首选项变得非常容易。
在按钮的操作中,您将保存其状态:
- (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"];
}
并在您的app delegate(或其他适当的对象)awakeFromNib
中,您将从用户默认值中读取该值:
NSInteger statusItemState = [[NSUserDefaults standardUserDefaults] integerForKey:@"MyApp_ShouldShowStatusItem"];
[myStatusItemCheckbox setState:statusItemState];
然后确保在必要时调用removeStatusItem
。
此程序几乎适用于您可能想要保存的任何偏好。