嗨,大家好几个小时都坚持这个问题。我只是访问PhotoLibrary甚至没有相机。它给出了这样的黑屏: http://www.screencast.com/t/SHP1eUrnk1f
这是代码:
@IBAction func selectProfileImageBtnTapped(sender: UIButton) {
let myImagePicker = UIImagePickerController()
myImagePicker.allowsEditing = false
myImagePicker.sourceType = .PhotoLibrary
presentViewController(myImagePicker, animated: true, completion: nil)
}
任何人都知道如何解决这个问题?
答案 0 :(得分:3)
当您的应用程序Info.plist文件包含一个键:“CFBundleDisplayName”,其中包含空字符串值时,此问题会出现在iOS 9中。
您可以在那里输入您的应用名称,它应该有效。
这里归功于原作者 App does not have access to your photos or videos iOS 9