2016-10-31 2 views
1

"응용 프로그램이 iTunes 파일 공유"라는 별칭으로 "UIFileSharingEnabled"문제를 가지고 있습니다.응용 프로그램이 iOS 10에서 작동하지 않는 iTunes 파일 공유를 지원합니다.

나는 아이튠즈 파일 공유 지원을 필요로하고 내가 이것에 대해 어떤 언급을 찾기 위해 노력했습니다 아이폰 OS (10)

몇 가지 장치를 업그레이드 할 때까지 그들 모두가 실제로 이전의 iOS 버전을 작업하던 몇 가지 응용 프로그램을 지금까지는 성공하지 못했습니다.

내가 찾을 수 있었던 유일한 것은 "CFBundleDisplayName"을 포함해야한다는 것이 었습니다.하지만 그 이유를 알 수는 없지만. 그러나 운이 없다.

<?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> 

모든 아이디어를 내가 잘못 무엇에 :

여기에 애플 리케이션 중 하나에 대한의 Info.plist 파일입니까? 모든 앱은 iOS 9.3 및 iOS 8에서 작동합니다.

답변

0

이상하게도 Xcode 8.1 및 iOS 10.1이 설치되어 작동합니다. 내가 설치 한 iTunes 버전이 iOS 10과 호환되지 않는 것 같습니다.

관련 문제