在我的应用中,用户应该有权访问照片库,以选择应该在ImageView组件中显示的照片。
我正在使用以下代码来执行此操作:
@IBAction func selectPhotoButtonTapped(sender: AnyObject) {
picker.allowsEditing = false
picker.sourceType = .PhotoLibrary
self.botonEnviar.hidden=false
presentViewController(picker, animated: true, completion: nil)
}
func imagePickerControllerDidCancel(picker: UIImagePickerController) {
dismissViewControllerAnimated(true, completion: nil)
}
func imagePickerController(
picker: UIImagePickerController,
didFinishPickingMediaWithInfo info: [String : AnyObject])
{
let chosenImage = info[UIImagePickerControllerOriginalImage] as! UIImage
myImageView.contentMode = .ScaleAspectFit
myImageView.image = resizeImage(chosenImage, newWidth: 1000)
dismissViewControllerAnimated(true, completion: nil)
}
在模拟器上工作正常,但在真实设备上,该应用无法访问该设备的照片库。
我需要在应用中包含哪些内容才能要求用户获得访问照片库的权限? 谢谢。
答案 0 :(得分:0)
Fisrt of all,检查您的设备设置>>您的应用>>权限。