I have an application that I've bundled into a Mac OS X app bundle. Everything is working fine, but I want to change its icon from the default. How do I set its icon? Thanks.
+3
A:
in your info.plist
add
<key>CFBundleIconFile</key>
<string>iconfile</string>
with icon file iconfile.icns
in your Resources directory
cobbal
2009-03-14 20:34:12
Works perfectly. Thanks.
Walt D
2009-03-14 20:45:43