Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Launching application from a SMS message

Tags:

iphone

sms

I am new to iphone application development.

I have a sample application that needs to be launched from a SMS message. I have no idea on how to do this. Please help me.

like image 922
saikamesh Avatar asked Dec 07 '22 08:12

saikamesh


1 Answers

Note that if SMS operates in the same manner as Mail on the iPhone, you'll need to enclose your custom URL in brackets to make it launch the application responding to that scheme. For example,

<yourapp://yoururl>

will work, but

yourapp://yoururl

will not.

like image 158
Brad Larson Avatar answered Dec 24 '22 22:12

Brad Larson