How do I set the icon for my application’s Mac OS X app bundle?

in your info.plist add

<key>CFBundleIconFile</key>
<string>iconfile</string>

with icon file iconfile.icns in your Resources directory

Leave a Comment