I would like to do the following
[controller setMessageBody:[开发者_JAVA技巧NSString stringWithFormat:@"<strong>%@</strong> <br> <br> %@ <br><br> %@ <br><br> Sent From MyApp",self.articleTitle, self.articleDescription, self.articleURL]
isHTML:YES];
on the last %@ I would like to do <a href="%@">Hello</a>
But I am not sure how to escape it properly?
Just use
@"....<a href=\"%%@\">Hello</a>..."
if you put it in the format, or use
@"<a href=\"%@\">Hello</a>"
if you include it using %@
in the format string. The %@
is only interpreted in the first argument of the stringWithFormat:
method here.
精彩评论