Moises Jimenez
Moises Jimenez

Reputation: 21

UIWebView interact with SMS application

I have an app that uses UIWebView to load a page. I have a SMS button on that site. How can I have Xcode read that button and open the iPhone SMS client once you click on that button?

Upvotes: 2

Views: 573

Answers (1)

Black Frog
Black Frog

Reputation: 11725

SMS application URL scheme:

<a href="sms:">Launch SMS Application</a>
<a href="sms:1-954-555-1212">New SMS Message</a>

Upvotes: 1

Related Questions