Reputation: 13
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