gpt4 book ai didi

IOS 9 图标快速操作

转载 作者:塔克拉玛干 更新时间:2023-11-02 19:56:15 25 4
gpt4 key购买 nike

在我的图标上使用 3D Touch 时,我正在尝试添加快速操作菜单。我的 info.plist 看起来像这样:

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

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

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

错误信息:

The data couldn’t be read because it isn’t in the correct format.

任何想法这里可能有什么问题?我尝试使用多个不同的代码,但仍然出错。

最佳答案

在常规部分将您的部署目标设置为 9.0。

然后尝试用 info.plist 中的代码替换您的代码。

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

关于IOS 9 图标快速操作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34055073/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com