小编Alx*_*Alx的帖子

使用XCode 5支持iOS 5.0图标

我正在使用新的资产目录AppIcon为iOS 5(理论上),6和7设置正确的图标.不幸的是,当我在iPad 1(使用iOS 5.1.1)上安装应用程序时,显示的图标不是正确的(它从另一个升级,当然是57x57).

我在创建资产目录后看到,在Info.plist文件中添加了2个空条目:

  • Icon files (iOS 5)
  • CFBundleIcons~ipad

我已经阅读了很多"解决方案",但没有任何对我有用:(

其中一个解决方案是在plist中添加这些条目(并在项目中添加相应的图标):

<key>CFBundleIcons</key>
<dict>
    <key>CFBundlePrimaryIcon</key>
    <dict>
        <key>CFBundleIconFiles</key>
        <array>
            <string>Icon.png</string>
            <string>Icon@2x.png</string>
            <string>Icon-72.png</string>
            <string>Icon-72@2x.png</string>
        </array>
        <key>UIPrerenderedIcon</key>
        <true/>
    </dict>
</dict>
<key>CFBundleIcons~ipad</key>
<dict>
    <key>CFBundlePrimaryIcon</key>
    <dict>
        <key>CFBundleIconFiles</key>
        <array>
            <string>Icon-Small</string>
            <string>Icon-Small-50</string>
            <string>Icon-72@2x.png</string>
            <string>Icon-72.png</string>
        </array>
        <key>UIPrerenderedIcon</key>
        <true/>
    </dict>
</dict>
Run Code Online (Sandbox Code Playgroud)

但它根本不起作用.

我正在使用XCode 5.0(5A1413).

任何帮助将非常感激.

xcode icons ios ios5

11
推荐指数
1
解决办法
5894
查看次数

在WP7上从xna游戏启动Internet Explorer

我想知道我是否可以从我在Windows Phone 7上运行的XNA游戏启动Internet Explorer?

我想将我的玩家重定向到我的网站.

最好的祝福,

xna internet-explorer windows-phone-7

2
推荐指数
1
解决办法
1959
查看次数

标签 统计

icons ×1

internet-explorer ×1

ios ×1

ios5 ×1

windows-phone-7 ×1

xcode ×1

xna ×1