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 i
Use
[[[NSApplication sharedApplication] dockTile] setBadgeLabel:@"2234"];
This method, and the NSDockTile class, has been available since Leopard.
NSDockTile