I need to create button to call one contact number, that number is the default number and I will mention that number in button click event.

When I click on button need to dial that number in iPhone using MonoTouch.

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted
UIApplication.SharedApplication.OpenUrl(NSUrl.FromString("tel://1234567890"));
link|improve this answer
Ok,Fine.But I think it doesnt work in Simulator..Isn't it? – Kishore Nov 11 '11 at 13:16
In the sense we can not make call from Simulator..Isn't it? – Kishore Nov 11 '11 at 13:29
No, the simulator is not capable of making phone calls. – Jason Nov 11 '11 at 15:11
Ok,Thank you..will it work in device only? and can i test it in device only? – Kishore Nov 11 '11 at 15:25
just make sure you only pass numbers after tel:// (no spaces, parentheses, etc) – BlackTigerX Nov 17 '11 at 7:13
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.