ドック アイコンにプログレス バーを表示するアプリケーションを作成しています。現在、私はこれを持っていますが、機能していません:
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];
それとも自分でドックに描く必要がありますか? 誰でも私を助けることができますか?ありがとう。