2016-10-31 44 views
1

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

我有需要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和iOS8上工作。

回答

0

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

相关问题