9

我正在创建一个应用程序,它应该在停靠图标中显示一个进度条。目前我有这个,但它不工作:

  NSProgressIndicator *progressIndicator = [[NSProgressIndicator alloc] initWithFrame:NSMakeRect(0.0f, 0.0f, 10.0f, 20.0f)];
  [progressIndicator setStyle:NSProgressIndicatorBarStyle];
  [progressIndicator setIndeterminate:NO];
  [[[[NSApplication sharedApplication] dockTile] contentView] addSubview:progressIndicator];
  [progressIndicator release];

还是我必须自己在码头上画?谁能帮我?谢谢。

4

2 回答 2

6

最后我不得不使用以下代码,因为 contentView 为空:

    docTile = [[NSApplication sharedApplication] dockTile];
    NSImageView *iv = [[NSImageView alloc] init];
    [iv setImage:[[NSApplication sharedApplication] applicationIconImage]];
    [docTile setContentView:iv];

    progressIndicator = [[NSProgressIndicator alloc]
                                              initWithFrame:NSMakeRect(0.0f, 0.0f, docTile.size.width, 10.)];
    [progressIndicator setStyle:NSProgressIndicatorBarStyle];
    [progressIndicator setIndeterminate:NO];
    [iv addSubview:progressIndicator];

    [progressIndicator setBezeled:YES];
    [progressIndicator setMinValue:0];
    [progressIndicator setMaxValue:1];
    [progressIndicator release];

    [self setProgress:[NSNumber numberWithFloat:-1]];
}

- (void)setProgress:(NSNumber *)fraction {
    if ( [fraction doubleValue] >= 0 ) {
        [progressIndicator setDoubleValue:[fraction doubleValue]];
        [progressIndicator setHidden:NO];
    }
    else
        [progressIndicator setHidden:YES];
    [docTile display];
}
于 2012-04-25T13:37:25.210 回答
2

刚刚玩了一下 DockTile 示例代码:http: //developer.apple.com/library/mac/#samplecode/DockTile/Introduction/Intro.html#//apple_ref/doc/uid/DTS10004391

我设法通过添加来获得一个 NSProgress 栏显示在那里

NSProgressIndicator *progressIndicator = [[NSProgressIndicator alloc] initWithFrame:NSMakeRect(0.0f, 0.0f, 100.0f, 20.0f)];
[self addSubview:progressIndicator];
[progressIndicator setStyle:NSProgressIndicatorBarStyle];
[progressIndicator setIndeterminate:NO];
[progressIndicator setMinValue:0];
[progressIndicator setMaxValue:100];
[progressIndicator setDoubleValue:25];
[progressIndicator release];

到 initWithFrame 中的 SpeedometerView.m,但它在 Dock 中仍然是灰色的。

我还找到了这个页面:http : //osx.hyperjeff.net/Apps/apps?p=4&sub=22&l=1&u=on 其中有“PMProgressIndicator”可能会有所帮助,但我没有深入了解它。

希望对您有所帮助,如果您弄清楚了,请在此处回复,我也有兴趣知道。

于 2010-10-23T17:42:12.670 回答