Hello,
... under iOS 7
But (App.CanOpenURL("tel:")) returns TRUE
I saw in this post that OS version must be >= 8
https://www.b4x.com/android/forum/threads/open-default-settings-app.51115/#content
Is it a way for older iOS version ?
btw, examples with MailComposer + MessageComposer from this forum work perfectly !
Thks in advance
B4X:
Sub ivPhone_Click
Dim iv As ImageView
iv=Sender
Log("Requested # :"&iv.Tag)
If App.CanOpenURL("tel:") = True Then
Log("openUrl(tel:) OK")
App.OpenUrl("tel:"&iv.Tag)
Else
hud.ToastMessageShow("Cannot place call",True)
End If
End Sub
But (App.CanOpenURL("tel:")) returns TRUE
I saw in this post that OS version must be >= 8
https://www.b4x.com/android/forum/threads/open-default-settings-app.51115/#content
Is it a way for older iOS version ?
btw, examples with MailComposer + MessageComposer from this forum work perfectly !
Thks in advance