2016-10-31 46 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不兼容。

相關問題