簡體   English   中英

iOS 6和Xcode 5.0的圖標光澤度

[英]Icon gloss with iOS 6 & Xcode 5.0

在使用iOS6和XCode 5時,我真的很害怕如何從我的圖標中刪除光澤。

我已經閱讀了這些問題:

從iOS 4.3中的圖標中刪除光澤效果

圖標已經包含光澤效果不工作ios 5

如何禁用突出顯示應用程序圖標?

現在我的plist看起來像這樣:

<plist version="1.0">
<dict>
    <key>LSApplicationCategoryType</key>
    <string></string>
    <key>CFBundleDevelopmentRegion</key>
    <string>en</string>
    <key>CFBundleDisplayName</key>
    <string>${PRODUCT_NAME}</string>
    <key>CFBundleExecutable</key>
    <string>${EXECUTABLE_NAME}</string>
    <key>CFBundleIdentifier</key>
    <string>com.burton.${PRODUCT_NAME:rfc1034identifier}</string>
    <key>CFBundleInfoDictionaryVersion</key>
    <string>6.0</string>
    <key>CFBundleName</key>
    <string>${PRODUCT_NAME}</string>
    <key>CFBundlePackageType</key>
    <string>APPL</string>
    <key>CFBundleShortVersionString</key>
    <string>1.0</string>
    <key>CFBundleSignature</key>
    <string>????</string>
    <key>CFBundleVersion</key>
    <string>1.0</string>
    <key>LSRequiresIPhoneOS</key>
    <true/>
    <key>UIPrerenderedIcon</key>
    <true/>
    <key>UIRequiredDeviceCapabilities</key>
    <array>
        <string>armv7</string>
    </array>
    <key>UISupportedInterfaceOrientations</key>
    <array>
        <string>UIInterfaceOrientationPortrait</string>
    </array>
</dict>
</plist>

但是,當我在手機上預覽應用程序時,仍然會應用光澤效果。 任何幫助將非常感激。

實際上他們已經移動了設置。 在項目設置下的常規選項卡下,在應用程序圖標部分下,選擇“使用資產目錄”。 現在在項目文件(最左側面板)下導航到Images.xcassets文件。 現在確保添加了應用程序圖標和啟動圖像。 重要的是確保啟用“Ios Icon預渲染”復選框。在查看Images.xcassets文件時,您可以在屬性面板(最右側面板)上找到此選項。 就是這樣,您可以刪除舊圖像並進行清理,然后構建並運行並完成。 這對我有用...... 在此輸入圖像描述

經過多次探討后,發現這是一個XCode 5和用於創建圖標的Media.xcassets文件夾的錯誤。 我已向Apple提交了錯誤報告。

設置“iOS圖標已預渲染”后,您必須從設備中刪除該應用程序並再次進行構建運行(在iOS 6.1中)。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM