tags:

views:

260

answers:

1

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
Works perfectly. Thanks.
Walt D