我对“应用程序支持iTunes文件共享”也就是“UIFileSharingEnabled”有一些奇怪的问题。
我有几个应用程序需要iTunes文件共享支持,在我将一些设备升级到iOS 10之前,它们实际上都在使用较旧的iOS版本。
我一直在找一些关于这方面的参考资料,但至今没有成功。
我唯一能找到的是我应该包含“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>

你知道我做错了什么吗?所有应用程序都在iOS9.3设备上运行,并在iOS8上运行。

最佳答案

奇怪的是,我安装了Xcode 8.1和iOS 10.1,现在它开始工作了。
我安装的iTunes版本似乎与iOS 10不兼容。

关于ios - 应用程序支持iTunes文件共享在iOS 10中不起作用,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/40338395/

10-12 00:32
查看更多