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