- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在项目的 info.plist 文件中添加了 NSPhotoLibraryAddUsageDescription 和 NSPhotoLibraryUsageDescription 。尝试创建相册或将图像添加到照片库时出现以下错误
此应用已崩溃,因为它试图在没有使用说明的情况下访问隐私敏感数据。应用的 Info.plist 必须包含一个 NSPhotoLibraryUsageDescription 键和一个向用户解释应用如何使用此数据的字符串值。
我试过一些像 PhotosHelper 这样的 swift 库.as 也可以这样做,但我仍然面临同样的问题
以下是我正在关注的代码
import UIKit
import Photos
class PhotoLibraryManager
{
private class func fetchAlbumWithName(albumName:String)->PHAssetCollection?
{
let fetchPredicate = PHFetchOptions()
fetchPredicate.predicate = NSPredicate(format: "title == '" + albumName + "'")
let fetchResult = PHAssetCollection.fetchAssetCollections(with: PHAssetCollectionType.album, subtype: PHAssetCollectionSubtype.albumRegular, options: fetchPredicate)
return fetchResult.firstObject
}
/**
This function requests for authorization to use the photo gallery and adds the image in the album both of which are specified.If the album does not exist it creates a new one and adds the image in that
- Parameters:
- image:The image to be inserted
- albumName:The name of the album in which the image is to be inserted
*/
class func saveImageToPhone(image:UIImage,albumName:String)
{
PHPhotoLibrary.requestAuthorization({(status:PHAuthorizationStatus)->Void in
switch status
{
case PHAuthorizationStatus.authorized:
insertImageAfterAuthorization(image: image,albumName: albumName)
default:
print("Unable To Access Photo Library")
}
})
}
/**
This function fetches the specified album from the photo library if present or creates a new one
- Parameters:
- image:The image to be inserted
- albumName:The name of the album in which the image is to be inserted
*/
private class func insertImageAfterAuthorization(image:UIImage,albumName:String)
{
let album = fetchAlbumWithName(albumName: albumName)
guard let albumToBeInserted = album else{
print("Creating A New Album \(albumName)")
PHPhotoLibrary.shared().performChanges({
PHAssetCollectionChangeRequest.creationRequestForAssetCollection(withTitle: albumName)
}, completionHandler: {(success:Bool,error:Error?)->Void in
guard let errorObj = error else{
let album = fetchAlbumWithName(albumName: albumName)
guard let createdAlbum = album else{
print("Album Not Created")
return
}
addImageIntoAlbum(image: image,album: createdAlbum)
return
}
print(errorObj.localizedDescription)
return
})
return
}
addImageIntoAlbum(image: image,album: albumToBeInserted)
}
/**
This function adds an image into the album specifed
- Parameters:
- image:The image to be added
- album:The album in which the image is to inserted
*/
private class func addImageIntoAlbum(image:UIImage,album:PHAssetCollection)
{
PHPhotoLibrary.shared().performChanges({
let imgCreationRequest = PHAssetChangeRequest.creationRequestForAsset(from: image)
print(imgCreationRequest)
let albumRequest = PHAssetCollectionChangeRequest(for: album)
guard let albumSpecificationRequest = albumRequest , let placeholderObjForImg = imgCreationRequest.placeholderForCreatedAsset else{
print("Image Could Not Be Added")
return
}
let arrAlbumSpecificationRequest:NSArray = [placeholderObjForImg]
albumSpecificationRequest.addAssets(arrAlbumSpecificationRequest)
// albumSpecificationRequest.addAssets([placeholderObjForImg])
}, completionHandler: {(success:Bool,error:Error?)->Void in
guard let errorObj = error else{
return
}
print(errorObj.localizedDescription)
})
}
}
这是我的 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>$(DEVELOPMENT_LANGUAGE)</string>
<key>CFBundleDisplayName</key>
<string>NewApp</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>UILaunchStoryboardName</key>
<string>LaunchScreen</string>
<key>UIMainStoryboardFile</key>
<string>Main</string>
<key>UIRequiredDeviceCapabilities</key>
<array>
<string>armv7</string>
</array>
<key>UISupportedInterfaceOrientations</key>
<array>
<string>UIInterfaceOrientationPortrait</string>
<string>UIInterfaceOrientationLandscapeLeft</string>
<string>UIInterfaceOrientationLandscapeRight</string>
</array>
<key>NSAppTransportSecurity</key>
<dict>
<key>NSAllowsArbitraryLoads</key>
<true/>
</dict>
<key>NSContactsUsageDescription</key>
<string>Connect People</string>
<key>NSCameraUsageDescription</key>
<string>Video Call</string>
<key>NSMicrophoneUsageDescription</key>
<string>For Audio Call</string>
<key>NSSiriUsageDescription</key>
<string>Siri Uses Test</string>
<key>UISupportedInterfaceOrientations~ipad</key>
<array>
<string>UIInterfaceOrientationPortrait</string>
<string>UIInterfaceOrientationPortraitUpsideDown</string>
<string>UIInterfaceOrientationLandscapeLeft</string>
<string>UIInterfaceOrientationLandscapeRight</string>
</array>
<key>UIBackgroundModes</key>
<array>
<string>audio</string>
<string>fetch</string>
<string>remote-notification</string>
<string>voip</string>
</array>
<key>NSPhotoLibraryUsageDescription</key>
<string>Photo Use</string>
<key>NSPhotoLibraryAddUsageDescription</key>
<string>Photo Use</string>
<key>NSUserActivityTypes </key>
<array>
<string>INStartAudioCallIntent</string>
<string>INStartVideoCallIntent</string>
</array>
</dict>
</plist>
在此先感谢您的帮助。
最佳答案
打开您的 info.plist 作为源代码并将以下内容粘贴到其中。
<key>NSPhotoLibraryUsageDescription</key>
<string>This app requires access to the photo library.</string>
<key>NSPhotoLibraryAddUsageDescription</key>
<string>This app requires read and write access to the photo library.</string>
关于ios - 应用程序的 Info.plist 必须包含一个 NSPhotoLibraryUsageDescription 键和一个字符串值,向用户解释应用程序如何使用此数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57859562/
第一次,我遇到了一个真正令人沮丧的问题。我不使用对照片库的任何访问权限,我不在我的应用程序中保存任何图像,我不使用任何需要使用说明的 API,我不在我的项目中使用任何其他库,但是当我上传我的应用程序时
我已将 key 和字符串消息添加到 .plist,但由于某种原因,我的应用程序不断崩溃,我不知道为什么。我从 swift 添加到 .plist 文件,我也尝试将它手动添加到代码中。当我运行该应用程序时
我正在尝试本地化应用程序的 info.plist 文件 ( reference here ) 中定义的 NSPhotoLibraryUsageDescription 键。 当应用程序首次请求访问您的相
我的应用今天在 Xcode9 上更新时崩溃,在 iOS11 上测试。添加 NSPhotoLibraryAddUsageDescription 之后它就可以工作了,即使我已经有了 NSPhotoLibr
更新: 我尝试将字符串值添加到 "NSPhotoLibraryUsageDescription" 键。 它可以工作。我的构建版本现在可以在我的 TestFlight 上使用。 ps:构建版本表示构建版
TLDR; 使用 Cordova,有没有办法覆盖插件可能设置的任何 Info.plist 值,例如 NSPhotoLibraryAddUsageDescription? (即可能有一个钩子(Hook)
尝试遵循 FoodTracker Apple 教程。代码 8.1。我得到这个崩溃日志: 2016-11-06 16:49:17.922832 FoodTracker[2307:660318] [acc
我们的 iOS 混合移动应用程序(使用 MobileFirst 7.1 开发)最近被 Apple 拒绝了: This app attempts to access privacy-sensitive
将 React-Native 构建的 .ipa 上传到 App Store 后,我从 Apple 收到此上传错误: Missing Info.plist key - This app attempts
在我第一次从 Xcode 8 上传到 iTunes Store 时,我收到了来自 Apple 的以下消息 This app attempts to access privacy-sensitive d
我完全使用应用程序加载器上传了我的 .ipa 文件,但我没有找到在 Itunes Connect 上构建的文件,我还收到了来自苹果支持的这条消息:“我们发现了一个或多个关于你最近交付的“更新 HF”的
最近我开始遇到这个错误: NSPhotoLibraryUsageDescription key must be present in Info.plist to use camera roll. 我正
我是否需要添加 NSPhotoLibraryUsageDescription key info.plist 。我没有使用任何与图像相关的库。 那我为什么会收到这封邮件 此应用试图在没有使用说明的情况下
我有一个正在更新到 Xcode 8.2.1 的应用程序。以前访问相机和照片库工作正常。但是现在应用程序崩溃并显示以下消息: This app has crashed because it attemp
我在项目的 info.plist 文件中添加了 NSPhotoLibraryAddUsageDescription 和 NSPhotoLibraryUsageDescription 。尝试创建相册或将
我开发了一个 Ionic 2 应用程序。当我尝试将它上传到 Apple 商店时,他们拒绝了它并显示以下消息: Missing Info.plist key - This app attempts to
我正在开发一个新应用程序,并尝试通过应用程序加载器首次提交到 iTunes。 ipa 文件由 phonegap 构建在线服务构建,该应用程序使用 cordova 相机插件等。 当我使用应用程序加载器上
我是 xcode 和 react-native 的新手。我正在尝试使用 react-native-image-picker 添加用户配置文件(上传到 s3)。 react-native-image-p
我是一名优秀的程序员,十分优秀!