Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

VIDEO_TOO_LONG_TITLE alert shown by UIImagePickerController

I use a UIImagePickerController to take movies. The length of a movie is limited by setting the videoMaximumDuration property of the controller.
When one tries to take a longer movie, an alert is shown, as expected.

However an unexpected additional alert entitled VIDEO_TOO_LONG_TITLE is shown directly above the controls (see image below).
Apparently this is an iOS bug (only partly localized, no clip has been selected).

Is it possible to hide this unnecessary and inappropriate alert?

enter image description here

like image 209
Reinhard Männer Avatar asked Oct 29 '16 08:10

Reinhard Männer


1 Answers

imagePicker.allowsEditing = false
like image 74
geemint Avatar answered Nov 15 '22 15:11

geemint