11

在几个月没有做任何事情之后,我开始重新投入到 Cocoa 开发中。最初,当我开始使用 Snow Leopard 和 Xcode 3 时。我现在正在使用 Xcode 4.2 运行 Lion,并且遇到了一些我以前没有遇到过的问题。

我相信这可能是因为我以前从未使用过 ARC,所以我确定我错过了一些东西。

我正在尝试创建没有主窗口或停靠图标的状态栏应用程序。当我运行应用程序时,我的应用程序的状态栏图标会短暂出现大约一秒钟,然后消失。

这是我的代码。

QuickPlusAppDelegate.h

#import <Cocoa/Cocoa.h>

@interface QuickPlusAppDelegate : NSObject <NSApplicationDelegate>

@property (assign) IBOutlet NSWindow *window;
@property (assign) NSStatusItem *statusItem;
@property (weak) IBOutlet NSMenu *statusItemMenu;

@property (strong) NSImage *statusItemIcon;
@property (strong) NSImage *statusItemIconHighlighted;
@property (strong) NSImage *statusItemIconNewNotification;

@end

QuickPlusAppDelegate.m

#import "QuickPlusAppDelegate.h"

@implementation QuickPlusAppDelegate
@synthesize statusItemMenu = _statusItemMenu;

@synthesize window = _window, statusItem = _statusItem;
@synthesize statusItemIcon = _statusItemIcon, 
    statusItemIconHighlighted = _statusItemIconHighlighted, 
    statusItemIconNewNotification = _statusItemIconNewNotification;

- (void) awakeFromNib
{
    NSBundle *appBundle = [NSBundle mainBundle];
    _statusItemIcon = [[NSImage alloc] initWithContentsOfFile:[appBundle pathForResource:@"statusItemIcon" ofType:@"png"]];
    _statusItemIconHighlighted = [[NSImage alloc] initWithContentsOfFile:[appBundle pathForResource:@"statusItemIconHighlighted" ofType:@"png"]];
    _statusItemIconNewNotification = [[NSImage alloc] initWithContentsOfFile:[appBundle pathForResource:@"statusItemIconNewNotification" ofType:@"png"]];

    _statusItem = [[NSStatusBar systemStatusBar] statusItemWithLength:NSVariableStatusItemLength];
    [_statusItem setImage:_statusItemIcon];
    [_statusItem setAlternateImage:_statusItemIconHighlighted];
    [_statusItem setHighlightMode:YES];
}

- (void)applicationDidFinishLaunching:(NSNotification *)aNotification
{
    // empty
}

@end

编辑如果您发现我的代码有任何问题,请告诉我。我肯定会进行一些批评,这样我才能变得更好。

另一个编辑当主窗口本身加载时,状态栏图标似乎消失了。

4

2 回答 2

22

在这种情况下,_statusItem 将被自动释放。

    _statusItem = [[NSStatusBar systemStatusBar] statusItemWithLength:NSVariableStatusItemLength];

这将返回一个自动释放的对象。_statusItem 只是一个 iVar。不仅如此,您还将该属性声明为分配:

@property (assign) NSStatusItem *statusItem;

您可能想要在这里做的是创建属性strong,然后使用该属性来设置它,而不是直接设置 ivar。所以像这样:

@property (strong) NSStatusItem *statusItem;

进而:

self.statusItem = [[NSStatusBar systemStatusBar] statusItemWithLength:NSVariableStatusItemLength];

这将导致 statusItem 被保留。我敢打赌,现在发生的事情是它在自动释放池弹出时被释放,然后你的应用程序在下次尝试访问它时崩溃,从而导致它从菜单栏中消失。通过 Zombies 仪器运行它会确定是否发生了这种情况。但一般来说,您的应用程序需要对该对象具有强引用才能使其保持不变。

于 2012-01-15T21:51:13.777 回答
2

我在 Xamarin 中遇到了这个问题。有一段时间它工作得很好。然后我在方法中添加了额外的代码,FinishedLaunchingStatusItem 开始消失。我让这段代码生成了 StatusItem:

    public override void AwakeFromNib ()
    {
        var statusItem = NSStatusBar.SystemStatusBar.CreateStatusItem (30);
        statusItem.Menu = mainMenu;
        statusItem.Image = NSImage.ImageNamed ("menuicon");
        statusItem.AlternateImage = NSImage.ImageNamed ("menuicon_selected");
        statusItem.HighlightMode = true;
    }

最终,我发现了我的问题。在我的 Xcode 中,我在 AppDelegate 中声明了这个属性,但我没有使用它:

@property(nonatomic, retain) IBOutlet NSStatusItem *statusItem;

当我移除varStatusItem 时,它继续展现其无限的荣耀:)

    public override void AwakeFromNib ()
    {
        statusItem = NSStatusBar.SystemStatusBar.CreateStatusItem (30);
        statusItem.Menu = mainMenu;
        statusItem.Image = NSImage.ImageNamed ("menuicon");
        statusItem.AlternateImage = NSImage.ImageNamed ("menuicon_selected");
        statusItem.HighlightMode = true;
    }

我不必将其更改为(强)。事实上,我尝试过,但在复制回 Xamarin Studio 时它并没有持续存在。

于 2015-03-02T15:45:01.597 回答