I want to implement SMS functionality in my application. Is there any way to do this, or any documentation to implement this functionality? Can anyone provide sample code for this?
+1
A:
you can use something like
NSString *message = [[NSString alloc] initWithFormat:@"sms:%@",phonenostring];
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:message ]];
mihirpmehta
2010-03-22 06:10:52
Then how can I get the sms body to enter the text?
monish
2010-03-22 06:11:26
Apple Documents haven't Specified anywhere that thing...and i don't think so Apple Support that...
mihirpmehta
2010-03-22 06:26:13