asedra_le
asedra_le

Reputation: 3067

Any way to send message in app without use MFMessageComposeViewController?

Any way to send message (i mean SMS, sorry :D) in app without use MFMessageComposeViewController?

Upvotes: 1

Views: 323

Answers (1)

Swastik
Swastik

Reputation: 2425

[[UIApplication sharedApplication] openURL: @"mailto:[email protected]"];

But this will quit your app

Upvotes: 1

Related Questions