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.