Hello,
I want to show notification in my project, so using GROWL framework (version-2.0) in MacOSX 10.9.4.
I have set Icon.icns as App icon.
I am Using below method to show notification. I want to show Icon with notification, So I am passing image data in iconData parameter.
+ (void) notifyWithTitle:@“title”
description:@“description”
notificationName:(NSString *)NotifierTestNotification
iconData:[NSData dataWithContentsOfFile:@“/Icon_path/notification.png"]
priority:0
isSticky:NO
clickContext:nil
identifier:nil
At time of notification, I am not getting notification.png with notification,instead of i am getting App icon with notification.
notification.png file is present at path,So iconData parameter is not nil, still i am getting App Icon??
Please guys help me.
Am i using wrong method to show notification in growl framework?? or Should I have to update framework version?? or is there any other issue??
--
You received this message because you are subscribed to the Google Groups "Growl Development" group.
To unsubscribe from this group and stop receiving emails from it, send an email to growl-developm...@googlegroups.com.
To post to this group, send email to growl-de...@googlegroups.com.
Visit this group at http://groups.google.com/group/growl-development.
For more options, visit https://groups.google.com/d/optout.
notifyWithTitle:@“title”
description:@“description”
notificationName:(NSString *)NotifierTestNotification
iconData:dataForImage
priority:0
isSticky:NO
clickContext:nil
identifier:nil