Reputation: 3067
Any way to send message (i mean SMS, sorry :D) in app without use MFMessageComposeViewController?
Upvotes: 1
Views: 323
Reputation: 2425
[[UIApplication sharedApplication] openURL: @"mailto:[email protected]"];
But this will quit your app
Upvotes: 1