cjlotz / Xamarin.Plugins

Cross platform Xamarin Plugins
MIT License
113 stars 56 forks source link

Unable to perform call on iOS #12

Closed TorbenK closed 9 years ago

TorbenK commented 9 years ago

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?

cjlotz commented 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");
    }
}
cjlotz commented 9 years ago

Pending further feedback this issue is now closed