Is it possible to create a fully customized alert? I\'m doing it with custom sheets now, but I\'d like to have the feature that the sheet is blocking (like -[NSAlert r
You will need a custom window with custom view drawing, however NSAlert does not allow you to change its window. So you will need to write your own window controller subclass like NSAlert ( though NSAlert is a subclass of NSObject ).