Hi all this code work without problem with iPhone:
But on iPad when i tap on button nothing happen ( No open Gallery )
if i have this code:
without MsgBox2Async work without problem also on iPad
Any idea ?
Thank you
Marco
B4X:
Sub btnChoosePicture_Click
Dim sf As Object = xui.Msgbox2Async( "VUOI CAMBIARE LA FOTO DEL TUO PROFILO ?", "App Leemon", "SI", "", "No", Null)
Wait For (sf) Msgbox_Result (Result As Int)
If Result = xui.DialogResponse_Positive Then
InitCamera
cam.SelectFromSavedPhotos(Sender, cam.TYPE_IMAGE)
End If
End Sub
But on iPad when i tap on button nothing happen ( No open Gallery )
if i have this code:
B4X:
Sub btnChoosePicture_Click
InitCamera
cam.SelectFromSavedPhotos(Sender, cam.TYPE_IMAGE)
End Sub
Any idea ?
Thank you
Marco