Closed TorbenK closed 9 years ago
Mmm, strange. Here's the snippet from the sample project PCL to make a phone call.
public static void MakeSamplePhoneCall(this IPhoneCallTask phoneCall)
{
if (phoneCall.CanMakePhoneCall)
{
phoneCall.MakePhoneCall("+272193343499", "Xamarin Demo User");
}
}
Pending further feedback this issue is now closed
Hi,
I'm unable to perform a call on iOS. I always get an exception sayin the NSString couldnt be parsed.
I also tried removed whitespaces and signs like "+" from the number but nothing worked.
Any ideas?