iOS Question DocumentPickerViewController in library iUI8 and multi-select / select all

Steve Ballard

New Member
Licensed User
Longtime User
I am trying to use the DocumentPickerViewController to select all files in a folder in iCloud to download to my sandbox application folder, but the options are not there in the picker.

My code:

Picker:
Private Sub BtnImport_Click
    'xui.MsgboxAsync("Clicked the house","read2u")
    Dim docPicker As DocumentPickerViewController
    'Dim docPick As Doc
    docPicker.InitializeImport("picker", Array("public.data"))
   
    docPicker.Show(Page1, BtnImport)
    Wait For Picker_Complete (Success As Boolean, Filenames As List)
    If Success Then
        'ImageView1.Bitmap = LoadBitmap(URLs.Get(0), "")
       
    End If
End Sub

I am sure I have missed something as the list of files is returned as a list, and the phone I am using for testing is not working that well so have another being delivered, but this bit is holding me up so really hope you can help. "Files" application on the iphone does allow multi-select / select all.
 
Top