0

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.

Nikos M.
  • 13,685
  • 4
  • 47
  • 61
Love Thailand
  • 769
  • 10
  • 12

3 Answers3

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
  1. Not possible.
  2. Check this
  3. 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