I don’t want to sit through the 48 minute video from WWDC again and hand write down the slides. I’m surprised Apple doesn’t have all this online somewhere (at least Google isn’t finding it…)
Anyway, I found this screen shot from Xcode in a forum somewhere.

So in the new iOS 5 world, the CFBundleIconFiles array can move to a dictionary object called CFBundleIcons. That dictionary contains two entries, both dictionaries: CFBundlePrimaryIcons in which your existing CFBungleIconFiles array can be copied to directly. The 2nd one is UINewsstandIcon, another dictionary, which contains a CFBundleIcon array with your non-standard newsstand icons and the bindingType and bindingEdge values.
The XML they show in the video is wrapping these dictionary items in tags, as opposed to and tags for individual items, or tags for things that are in typical arrays.
The Coronoa build.settings might work now that I look at it.
<br>iphone =<br> {<br> plist=<br> {<br> UIInterfaceOrientation = "UIInterfaceOrientationLandscapeRight",<br> UISupportedInterfaceOrientations =<br> {<br> "UIInterfaceOrientationLandscapeLeft",<br> "UIInterfaceOrientationLandscapeRight"<br> },<br> MinimumOSVersion="3.2.0",<br> UIApplicationExitsOnSuspend = false,<br> UIPrerenderedIcon="YES",<br> UIStatusBarHidden=true,<br> CFBundleIconFile = "Icon.png",<br> CFBundleIconFiles = {<br> "Icon.png" , <br> "Icon@2x.png" , <br> "Icon-72.png" , <br> "Icon-Small-50.png" , <br> "Icon-Small.png" , <br> "Icon-Small@2x.png"<br> },<br> CFBundleIcons = {<br> CFBundlePrimaryIcons = {<br> CFBundleIconFiles = {<br> "Icon.png" , <br> "Icon@2x.png" , <br> "Icon-72.png" , <br> "Icon-Small-50.png" , <br> "Icon-Small.png" , <br> "Icon-Small@2x.png"<br> },<br> },<br> UINewsstandPrimaryIcons = {<br> CFBundleIconFiles = {<br> "NewsIcon.png" , <br> "NewsIcon@2x.png"<br> },<br> UINewsstandBindingType = "UINewsstandBindingTypeNewspaper",<br> UINewsstandBindingEdge = "UINewsstandBindingEdgeBottom"<br> },<br> },<br> UIAppFonts =<br> {<br> "actionj.ttf",<br> "oogieboogie.ttf",<br> "SAF.otf",<br> "curlycue.ttf"<br> },<br> },<br>
I’m now thinking this might just work… [import]uid: 19626 topic_id: 16572 reply_id: 62084[/import]