I'm developing movie app and want read reply message for SMS in iOS I sent a message to the number 4888888 SMS. Later I received a reply from the number. I asked, I can read or access the message or not.
Asked
Active
Viewed 3,409 times
0
-
2You can not do with Public API – Maulik Dec 11 '13 at 09:53
-
for jail break device check this http://stackoverflow.com/questions/10681995/how-to-get-the-message-when-receiving-the-kctmessagereceivednotification-notif/11026338#11026338 – Pradhyuman sinh Dec 11 '13 at 09:58
3 Answers
6
There is NO way to read an sms in iOS. Apple does not allow that. The messages api allows you to use the compose message window, pre-populate it with data and let the user send a message within your app. But when it comes to reading incoming messages, there is no public api that gives you that option.

Nikos M.
- 13,685
- 4
- 47
- 61
1
Apple does not allow developer to access message inbox to get the messages we can only send SMS/MMS from app

Charan Giri
- 1,097
- 1
- 9
- 15
0
- Not possible.
- Check this
- For SMS sending through application allowed but for accessing inbox for SMS/email not allowed.
For sending text
NString *message = [[NSString alloc] initWithFormat:@"sms:%@",Phone_number_string];
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:message]];

Pradhyuman sinh
- 3,936
- 1
- 23
- 38