UIImagePickerController no funciona correctamente en ios 9.3 iPad 4

Después de actualizar ipad a ios 9.3 las imágenes se detienen para mostrar ¿Qué puede estar mal con eso? En iOS 9 y iOS 9.2, eso también funcionó. En otros dispositivos, todos los dispositivos iPhone funcionan bien.

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

Respuestas a la pregunta(2)

Su respuesta a la pregunta