Dim DocumentPicker As DocumentPickerViewController
DocumentPicker.InitializeImport("picker", Array("public.image"))
DocumentPicker.Show(B4XPages.GetNativeParent(Me), xlbl_MiddleButton)
Wait For Picker_Complete (Success As Boolean, URLs As List)
Wait For (File.CopyAsync(URLs.Get(0), "",File.DirLibrary, "myimage.png")) Complete (Success As Boolean)
] iUI8 v1.60 adds a new type named DocumentPickerViewController. This picker allows the user to choose an external document. The document will be imported (copied) to your app file system. Example: Sub Page1_Click DocumentPicker.InitializeImport("picker", Array("public.image"))...