vote up 1 vote down star

I want to make use of sms in my iPhone application, i found that its an impossible to integrate whole module of sms in an iphone application, we can just switch over to iPhone's sms application by passing number.

I had tried following bt still i am not able to open inbuilt sms application.

NSString *no = @"9904143445";
NSString *sms = [NSString stringWithFormat:@"smsto:%@",no];
[[UIApplication sharedApplication]openURL:[NSURL URLWithString:sms]];

kindly help me to find solution.

Thank you.

flag

0% accept rate

2 Answers

vote up 5 vote down

Your URL protocol is wrong: "smsto" should be just "sms"

link|flag
And don't forget; the SMS isn't working in the Simulator, only in your device. – Tubbe Nov 8 at 14:32
vote up 2 vote down

We have used sms:+1254545454 from our web app [built specially for iPhone] and it invokes the in-built SMS application absolutely fine.

link|flag

Your Answer

Get an OpenID
or

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