如何从Xamarin Forms iOS应用程序使用特定的电话号码打开Whatsapp?

时间:2018-12-02 10:26:17

标签: c# ios xamarin.forms xamarin.ios whatsapp

我需要知道如何从我的应用程序打开WhatsApp到特定的号码。对于Android,以下方法工作正常,但我不知道它是否适用于iOS。这是我的Android代码:

try
{
    Device.OpenUri(new Uri("whatsapp://send?phone=+678115361041"));
}
catch (Exception ex)
{
    await DisplayAlert("Not Installed", "Whatsapp Not Installed", "ok");
    await DisplayAlert("", ex.Message, "ok");
}

0 个答案:

没有答案