Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

UIImagePickerController does not work correct on ios 9.3 iPad 4

After update ipad to ios 9.3 images are stop to display. What can be wrong with it? On iOS 9 and iOS 9.2 that was work as well. On other devices iPhone devices all work fine.

 private func presentPickerForLibrary() {
    let imagePicker = UIImagePickerController()
    imagePicker.allowsEditing = false
    imagePicker.sourceType = .PhotoLibrary
    imagePicker.delegate = self
    presentViewController(imagePicker, animated: true, completion: nil)
}

don't show preview

don't show preview

like image 258
Paul Lafytskyi Avatar asked Mar 29 '16 16:03

Paul Lafytskyi


1 Answers

Seems to be linked to iCloud Photo Library setting. Turning this on in Preferences fixes the issue for me.

like image 192
Sjaak Schilperoort Avatar answered Oct 21 '22 18:10

Sjaak Schilperoort