I have NSUserNotification working in my application. For some reason I get the generic icon image on the notification alert/banner instead of the application icon. The app. icon has been properly added. It builds fine and the icon is displayed on the About Panel.
What do I need to do to replace the notification's generic icon with the app. icon?
Thanks.
NSUserNotification *notification = [[NSUserNotification alloc] init];
notification.title = @"Operation Successful";
notification.informativeText = @"Image Processing Complete ...";
[[NSUserNotificationCenter defaultUserNotificationCenter]deliverNotification:notification];
- (BOOL)userNotificationCenter:(NSUserNotificationCenter *)center shouldPresentNotification:(NSUserNotification *)notification{
return YES;
}