应用程序支持iTunes文件共享无法在iOS 10中运行

时间:2016-10-31 07:59:49

标签: ios swift itunes file-sharing

我有一个奇怪的问题,“应用程序支持iTunes文件共享”又名“UIFileSharingEnabled”。

我有一些需要iTunes文件共享支持的应用程序,所有这些应用程序实际上都在使用较旧的iOS版本,直到我将某些设备升级到iOS 10。

我一直试图找到一些关于此的参考但到目前为止没有成功。

我能找到的唯一一件事就是我应该包含“CFBundleDisplayName”并且我做了,但我不确定我是否看到了背后的原因。但是,没有运气。

以下是其中一个应用的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>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>1.0</string>
    <key>CFBundleVersion</key>
    <string>1</string>
    <key>LSRequiresIPhoneOS</key>
    <true/>
    <key>NSPhotoLibraryUsageDescription</key>
    <string> Photo Library Access Warning</string>
    <key>UIFileSharingEnabled</key>
    <true/>
    <key>CFBundleDisplayName</key>
    <string>${PRODUCT_NAME}</string>
    <key>UILaunchStoryboardName</key>
    <string>LaunchScreen</string>
    <key>UIMainStoryboardFile</key>
    <string>Main</string>
    <key>UIRequiredDeviceCapabilities</key>
    <array>
    <string>armv7</string>
    </array>
    <key>UIStatusBarHidden</key>
    <true/>
    <key>UISupportedInterfaceOrientations</key>
    <array>
        <string>UIInterfaceOrientationPortrait</string>
        <string>UIInterfaceOrientationPortraitUpsideDown</string>
        <string>UIInterfaceOrientationLandscapeLeft</string>
        <string>UIInterfaceOrientationLandscapeRight</string>
    </array>
    <key>UIViewControllerBasedStatusBarAppearance</key>
    <false/>
 </dict>
</plist>

关于我做错的任何想法?所有应用程序均可在iOS 9.3设备上运行,并可在iOS 8上运行。

1 个答案:

答案 0 :(得分:0)

奇怪的是,我安装了Xcode 8.1和iOS 10.1,现在它可以运行了。 我安装的iTunes版本似乎与iOS 10不兼容。