user3018701
user3018701

Reputation: 13

Obj-C SMS with hyperlink in it

I would like to have the message body populate with a link in it, without showing the link, but instead a word.

Much like:

a href="http://www.google.com">Actual Text Shown</a>

.

Right now I have:

  NSString *message = [NSString stringWithFormat:@"Some Text blah
  blah:\n%@\n\nSent by the Test app.", _Label.text];

Which comes out like this:

Some Text blah Blah:
label text

Sent by the Test app.

And I would like 'Test' to be hyperlinked to the app store.

How do I do this?

Thanks

Upvotes: 0

Views: 138

Answers (1)

Jim
Jim

Reputation: 73966

This can't be done, SMS has no concept of hyperlinks.

Upvotes: 1

Related Questions