iOS Question Send message to some WhatsApp number

Lucas Eduardo

Active Member
Licensed User
Hello, i did it in Android, but i could not find how to do it in iOS.
Here is the code in B4A:
B4X:
Dim Intent1 As Intent
Intent1.Initialize(Intent1.ACTION_VIEW, $"https://api.whatsapp.com/send?phone=55${number}&text=${""}"$)
Intent1.SetComponent("android/com.android.internal.app.ResolverActivity")
StartActivity(Intent1)

How can i do it with B4I?

Thank you.
 
Top