Growl integration quick guide - hewigovens/hewigovens.github.com GitHub Wiki

  1. Download and unzip sdk from Growl.info, Current version is Growl-2.0.1
  2. Add Xcode build phase, copy Growl.framework to app's Framework folder
  3. Link to Growl.framework
  4. Your controller or AppDelegate:#import <Growl/Growl.h>, implement protocol GrowlApplicationBridgeDelegate
  5. call [GrowlApplicationBridge setGrowlDelegate:self];
  6. implement method registrationDictionaryForGrowl:
-(NSDictionary *)registrationDictionaryForGrowl
{
    return @{
             GROWL_NOTIFICATIONS_ALL:@[@"im.kernelpanic.DesktopNotification"],
             GROWL_NOTIFICATIONS_DEFAULT:@[@"im.kernelpanic.DesktopNotification"]
             };
}
  1. call [GrowlApplicationBridge notifyWithTitle...] to send notifications