Objective-C - open SMS

Posted by teepusink on Stack Overflow See other posts from Stack Overflow or by teepusink
Published on 2010-04-08T06:05:32Z Indexed on 2010/04/08 6:13 UTC
Read the original article Hit count: 477

Filed under:
|

Hi,

How do I open SMS from my app and have the new message popped up and prepopulated?

Right now this is what I have
NSString *stringURL = @"sms:";
NSURL *url = [NSURL URLWithString:stringURL];
[[UIApplication sharedApplication] openURL:url];

That opens the SMS app but you have to click on new message etc.

Thanks,
Tee

© Stack Overflow or respective owner

Related posts about objective-c

Related posts about iphone-sdk