<key>UINewsstandApp</key>
<true/>
<key>UINewsstandIcon</key>
<dict>
<key>CFBundleIconFiles</key>
<array>
<string>images/AppIcon-114.png</string>
</array>
</dict>
I have an image located in images/AppIcon-114.png and it doesn’t load this icon in the newsstand for my application. It shows the default paper like icon.
What is the path relative to?
I just did a quick test. In my project I put the icon files in the main app directory, where main.m resides. They are called Icon.png and Icon@2x.png for the application icons, and Newsstand-Cover-Icon.png and Newsstand-Cover-Icon@2x.png
The CFBundleIcons section of the *.plist file (found in the main app directory) looks like this:
Other relevant sections of the *.plist file are set to this:
You may have to build and launch your app on the device a couple of times, before the icons appear on the Newsstand shelf.
You can edit *.plist files with a text editor like TextWrangler (free), TextMate (paid), or MacVim (free).
Hope this helps!