iOS Question Select multiple files

tufanv

Expert
Licensed User
Longtime User
Hello,

I am using two codes to make user select files or media from iPhone:

B4X:
Private Sub iconuploaddoc_Click
    Dim DocumentPicker As DocumentPickerViewController
    DocumentPicker.InitializeImport("picker", Array("public.data"))
    DocumentPicker.Show(pagetransfer2,Page1)
    Wait For Picker_Complete (Success As Boolean, URLs As List)
    Log(Success)
    Log(URLs)
End Sub

and

B4X:
cam.SelectFromSavedPhotos(Sender, cam.TYPE_ALL)

both of them allows to select one file at a time. Is there any way to allow multiple files to be selected?

Tufan
 
Top