marcc
marcc

Reputation: 12399

Cocoa - XCode style notification window

Is the semi-transparant notification window which XCode 4 shows on Snow Leopard and on Lion a standard Cocoa control or is it something custom? I've seen more and more apps with similarly styled popups, and don't want to go about reinventing something if a much cleaner implementation exists in Cocoa. If this is a standard control, could someone tell me the name or point me to the documentation for it?

This is the popup window I am referring to:

XCode's Build Succeeded window

Upvotes: 5

Views: 1195

Answers (1)

user142019
user142019

Reputation:

This is custom but Matt Gemmell has sample code at http://mattgemmell.com/source. It's called RoundedFloatingPanel.

Upvotes: 5

Related Questions