アプリケーションのドックアイコンにプログレスバーを表示したい。動作しますが、何らかの理由で、進行状況バーが標準の青いバーではなく灰色のバーとして表示されます。別のSOの質問で見つけたコードを使用しました。私は何が間違っているのですか?
NSProgressIndicator *progressIndicator = [[NSProgressIndicator alloc] initWithFrame:NSMakeRect(0.0f, 0.0f, 80.0f, 20.0f)];
[progressIndicator setStyle:NSProgressIndicatorBarStyle];
[progressIndicator setIndeterminate:NO];
[[[NSApplication sharedApplication] dockTile] setContentView:progressIndicator];
[progressIndicator setDoubleValue:50];
[[[NSApplication sharedApplication] dockTile] display];