菜鸟教程小白 发表于 2022-12-12 17:29:43

IOS 9 快速操作图标


                                            <p><p>我正在尝试在我的图标上使用 3D Touch 时添加快速操作菜单。我的 info.plist 如下所示:</p>

<pre><code>&lt;?xml version=&#34;1.0&#34; encoding=&#34;UTF-8&#34;?&gt;
&lt;!DOCTYPE plist PUBLIC &#34;-//Apple//DTD PLIST 1.0//EN&#34; &#34;http://www.apple.com/DTDs/PropertyList-1.0.dtd&#34;&gt;
&lt;plist version=&#34;1.0&#34;&gt;
&lt;dict&gt;
    &lt;key&gt;UIViewControllerBasedStatusBarAppearance&lt;/key&gt;
    &lt;false/&gt;
    &lt;key&gt;CFBundleDevelopmentRegion&lt;/key&gt;
    &lt;string&gt;en&lt;/string&gt;
    &lt;key&gt;CFBundleExecutable&lt;/key&gt;
    &lt;string&gt;$(EXECUTABLE_NAME)&lt;/string&gt;
    &lt;key&gt;CFBundleIdentifier&lt;/key&gt;
    &lt;string&gt;$(PRODUCT_BUNDLE_IDENTIFIER)&lt;/string&gt;
    &lt;key&gt;CFBundleInfoDictionaryVersion&lt;/key&gt;
    &lt;string&gt;6.0&lt;/string&gt;
    &lt;key&gt;CFBundleName&lt;/key&gt;
    &lt;string&gt;$(PRODUCT_NAME)&lt;/string&gt;
    &lt;key&gt;CFBundlePackageType&lt;/key&gt;
    &lt;string&gt;APPL&lt;/string&gt;
    &lt;key&gt;CFBundleShortVersionString&lt;/key&gt;
    &lt;string&gt;0.3&lt;/string&gt;
    &lt;key&gt;CFBundleSignature&lt;/key&gt;
    &lt;string&gt;????&lt;/string&gt;
    &lt;key&gt;CFBundleVersion&lt;/key&gt;
    &lt;string&gt;3&lt;/string&gt;
    &lt;key&gt;LSRequiresIPhoneOS&lt;/key&gt;
    &lt;true/&gt;
    &lt;key&gt;UIBackgroundModes&lt;/key&gt;
    &lt;array&gt;
      &lt;string&gt;remote-notification&lt;/string&gt;
    &lt;/array&gt;
    &lt;array&gt;
      &lt;dict&gt;
            &lt;key&gt;UIApplicationShortcutItemIconType&lt;/key&gt;
            &lt;string&gt;UIApplicationShortcutIconTypeAdd&lt;/string&gt;
            &lt;key&gt;UIApplicationShortcutItemTitle&lt;/key&gt;
            &lt;string&gt;Home&lt;/string&gt;
            &lt;key&gt;UIApplicationShortcutItemType&lt;/key&gt;
            &lt;string&gt;quickactions.sweefties.home&lt;/string&gt;
      &lt;/dict&gt;
      &lt;dict&gt;
            &lt;key&gt;UIApplicationShortcutItemIconFile&lt;/key&gt;
            &lt;string&gt;videow&lt;/string&gt;
            &lt;key&gt;UIApplicationShortcutItemSubtitle&lt;/key&gt;
            &lt;string&gt;Launch video..&lt;/string&gt;
            &lt;key&gt;UIApplicationShortcutItemTitle&lt;/key&gt;
            &lt;string&gt;Movies&lt;/string&gt;
            &lt;key&gt;UIApplicationShortcutItemType&lt;/key&gt;
            &lt;string&gt;quickactions.sweefties.movies&lt;/string&gt;
      &lt;/dict&gt;
      &lt;dict&gt;
            &lt;key&gt;UIApplicationShortcutItemIconType&lt;/key&gt;
            &lt;string&gt;UIApplicationShortcutIconTypeShare&lt;/string&gt;
            &lt;key&gt;UIApplicationShortcutItemTitle&lt;/key&gt;
            &lt;string&gt;Share&lt;/string&gt;
            &lt;key&gt;UIApplicationShortcutItemType&lt;/key&gt;
            &lt;string&gt;quickactions.sweefties.share&lt;/string&gt;
      &lt;/dict&gt;
      &lt;dict&gt;
            &lt;key&gt;UIApplicationShortcutItemIconType&lt;/key&gt;
            &lt;string&gt;UIApplicationShortcutIconTypeCompose&lt;/string&gt;
            &lt;key&gt;UIApplicationShortcutItemTitle&lt;/key&gt;
            &lt;string&gt;Message&lt;/string&gt;
            &lt;key&gt;UIApplicationShortcutItemType&lt;/key&gt;
            &lt;string&gt;quickactions.sweefties.message&lt;/string&gt;
      &lt;/dict&gt;
    &lt;/array&gt;
    &lt;key&gt;UILaunchStoryboardName&lt;/key&gt;
    &lt;string&gt;LaunchScreen&lt;/string&gt;
    &lt;key&gt;UIMainStoryboardFile&lt;/key&gt;
    &lt;string&gt;Main&lt;/string&gt;
    &lt;key&gt;UIRequiredDeviceCapabilities&lt;/key&gt;
    &lt;array&gt;
      &lt;string&gt;armv7&lt;/string&gt;
    &lt;/array&gt;
    &lt;key&gt;UIStatusBarStyle&lt;/key&gt;
    &lt;string&gt;UIStatusBarStyleLightContent&lt;/string&gt;
    &lt;key&gt;UISupportedInterfaceOrientations&lt;/key&gt;
    &lt;array&gt;
      &lt;string&gt;UIInterfaceOrientationPortrait&lt;/string&gt;
    &lt;/array&gt;
    &lt;key&gt;UISupportedInterfaceOrientations~ipad&lt;/key&gt;
    &lt;array&gt;
      &lt;string&gt;UIInterfaceOrientationPortrait&lt;/string&gt;
      &lt;string&gt;UIInterfaceOrientationPortraitUpsideDown&lt;/string&gt;
      &lt;string&gt;UIInterfaceOrientationLandscapeLeft&lt;/string&gt;
      &lt;string&gt;UIInterfaceOrientationLandscapeRight&lt;/string&gt;
    &lt;/array&gt;
&lt;/dict&gt;
&lt;/plist&gt;
</code></pre>

<p>不知何故,在下面添加此代码时,在尝试运行项目或尝试使用“属性列表”打开 info.plist 时出现错误。</p>

<pre><code>&lt;array&gt;
      &lt;dict&gt;
            &lt;key&gt;UIApplicationShortcutItemIconType&lt;/key&gt;
            &lt;string&gt;UIApplicationShortcutIconTypeAdd&lt;/string&gt;
            &lt;key&gt;UIApplicationShortcutItemTitle&lt;/key&gt;
            &lt;string&gt;Home&lt;/string&gt;
            &lt;key&gt;UIApplicationShortcutItemType&lt;/key&gt;
            &lt;string&gt;quickactions.sweefties.home&lt;/string&gt;
      &lt;/dict&gt;
      &lt;dict&gt;
            &lt;key&gt;UIApplicationShortcutItemIconFile&lt;/key&gt;
            &lt;string&gt;videow&lt;/string&gt;
            &lt;key&gt;UIApplicationShortcutItemSubtitle&lt;/key&gt;
            &lt;string&gt;Launch video..&lt;/string&gt;
            &lt;key&gt;UIApplicationShortcutItemTitle&lt;/key&gt;
            &lt;string&gt;Movies&lt;/string&gt;
            &lt;key&gt;UIApplicationShortcutItemType&lt;/key&gt;
            &lt;string&gt;quickactions.sweefties.movies&lt;/string&gt;
      &lt;/dict&gt;
      &lt;dict&gt;
            &lt;key&gt;UIApplicationShortcutItemIconType&lt;/key&gt;
            &lt;string&gt;UIApplicationShortcutIconTypeShare&lt;/string&gt;
            &lt;key&gt;UIApplicationShortcutItemTitle&lt;/key&gt;
            &lt;string&gt;Share&lt;/string&gt;
            &lt;key&gt;UIApplicationShortcutItemType&lt;/key&gt;
            &lt;string&gt;quickactions.sweefties.share&lt;/string&gt;
      &lt;/dict&gt;
      &lt;dict&gt;
            &lt;key&gt;UIApplicationShortcutItemIconType&lt;/key&gt;
            &lt;string&gt;UIApplicationShortcutIconTypeCompose&lt;/string&gt;
            &lt;key&gt;UIApplicationShortcutItemTitle&lt;/key&gt;
            &lt;string&gt;Message&lt;/string&gt;
            &lt;key&gt;UIApplicationShortcutItemType&lt;/key&gt;
            &lt;string&gt;quickactions.sweefties.message&lt;/string&gt;
      &lt;/dict&gt;
    &lt;/array&gt;
</code></pre>

<p>错误信息:</p>

<blockquote>
<p>The data couldn’t be read because it isn’t in the correct format.</p>
</blockquote>

<p>有什么想法可能是错的吗?我尝试使用多个不同的代码,但仍然出错。</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>在常规部分将您的部署目标设置为 9.0。</p>

<p>然后尝试在 info.plist 中用这个替换你的代码。</p>

<pre><code>&lt;key&gt;UIApplicationShortcutItems&lt;/key&gt;
    &lt;array&gt;
      &lt;dict&gt;
            &lt;key&gt;UIApplicationShortcutItemIconType&lt;/key&gt;
            &lt;string&gt;UIApplicationShortcutIconTypeAdd&lt;/string&gt;
            &lt;key&gt;UIApplicationShortcutItemTitle&lt;/key&gt;
            &lt;string&gt;Home&lt;/string&gt;
            &lt;key&gt;UIApplicationShortcutItemType&lt;/key&gt;
            &lt;string&gt;quickactions.sweefties.home&lt;/string&gt;
      &lt;/dict&gt;
      &lt;dict&gt;
            &lt;key&gt;UIApplicationShortcutItemIconFile&lt;/key&gt;
            &lt;string&gt;videow&lt;/string&gt;
            &lt;key&gt;UIApplicationShortcutItemSubtitle&lt;/key&gt;
            &lt;string&gt;Launch video..&lt;/string&gt;
            &lt;key&gt;UIApplicationShortcutItemTitle&lt;/key&gt;
            &lt;string&gt;Movies&lt;/string&gt;
            &lt;key&gt;UIApplicationShortcutItemType&lt;/key&gt;
            &lt;string&gt;quickactions.sweefties.movies&lt;/string&gt;
      &lt;/dict&gt;
      &lt;dict&gt;
            &lt;key&gt;UIApplicationShortcutItemIconType&lt;/key&gt;
            &lt;string&gt;UIApplicationShortcutIconTypeShare&lt;/string&gt;
            &lt;key&gt;UIApplicationShortcutItemTitle&lt;/key&gt;
            &lt;string&gt;Share&lt;/string&gt;
            &lt;key&gt;UIApplicationShortcutItemType&lt;/key&gt;
            &lt;string&gt;quickactions.sweefties.share&lt;/string&gt;
      &lt;/dict&gt;
      &lt;dict&gt;
            &lt;key&gt;UIApplicationShortcutItemIconType&lt;/key&gt;
            &lt;string&gt;UIApplicationShortcutIconTypeCompose&lt;/string&gt;
            &lt;key&gt;UIApplicationShortcutItemTitle&lt;/key&gt;
            &lt;string&gt;Message&lt;/string&gt;
            &lt;key&gt;UIApplicationShortcutItemType&lt;/key&gt;
            &lt;string&gt;quickactions.sweefties.message&lt;/string&gt;
      &lt;/dict&gt;
    &lt;/array&gt;
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于IOS 9 快速操作图标,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/34055073/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/34055073/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: IOS 9 快速操作图标