How do I draw a badge on my Dock icon using Cocoa?

2020-02-07 19:04发布

How do I add a badge to the Dock icon for my app using Cocoa? Is there any roughly "standardized" way to do this?

(I'm referring to the kind of badges that show up in Mail, iChat etc. to indicate the number of unread messages and the like.)

Cocoa Touch does provide one such method, but I haven't been able to find any equivalent for a regular Cocoa application.

3条回答
家丑人穷心不美
2楼-- · 2020-02-07 19:22

It should be noted that NSDockTile is only available on Leopard. If you need to target Tiger you'll need to use -setApplicationIconImage: on your NSApplication object and draw your badge by hand.

Also, it's not in the documentation outside of the release notes that I could find but you get your application's dock tile by sending the dockTile message to your NSApplication object.

NSDockTile *tile = [[NSApplication sharedApplication] dockTile];
[tile setBadgeLabel:@"Lots"];
查看更多
男人必须洒脱
3楼-- · 2020-02-07 19:25

A quick google search turned up the NSDockTile class. Seems pretty self-explanatory once you take a gander at the documentation.

查看更多
一夜七次
4楼-- · 2020-02-07 19:29

Use

 [[[NSApplication sharedApplication] dockTile] setBadgeLabel:@"2234"];

This method, and the NSDockTile class, has been available since Leopard.

查看更多
登录 后发表回答