I'm trying to add a growl notification to an application for the mac but keep getting an error. I think I've followed the instructions right but something is wrong.Here's what I did:
I downloaded the growl SDK, added the Growl-WithInstaller.framework
with "copy items into destination folder" checked.
Then added the framework to the build phase as copy files and set the destination to "frameworks".
I used an empty file to make the the growl registration ticket and dragged it to the copy bundle resources build phase.
Finally I added the GrowlApplicationBridgeDelegate
to the @interface
and the #import <Growl/Growl.h>
to the header file.
When I build it I get an error saying that the Growl/Growl.h
file was not found. It's there but it seems xcode cant find it. I imagine it's because I linked it wrong, any idea what the problem is?
I've tried the growl website and general linking help topics but I haven't found a solution.
Thanks.