1

在我的应用程序中,我通过JSON使用 Web 服务,在检索它时包含一些 URL 链接,例如:

   Enfim, aqui vai a review![youtube]http:\/\/youtu.be\/HFn_IRLEAOA<\/a>[\/youtube]

我想将特定的你管链接显示为:

  "Please click here to see"

由于我使用代码删除了您,如下所示:

   NSString *replac1=[replac stringByReplacingOccurrencesOfString:@"[youtube]" withString:@""];
   NSString *replac2=[replac1 stringByReplacingOccurrencesOfString:@"[/youtube]" withString:@""];
   NSString *replac3=[replac2 stringByReplacingOccurrencesOfString:@"[youtube ]" withString:@""];

如何添加“请单击此处查看”而不是该链接值?请帮我解决。

4

1 回答 1

1

这可能会帮助您:

 NSString *html = @"<a href=\"http://www.youtube.com/watch?v=pii4G8FkCA4/\">Please click here to see</a>";
[webview loadHTMLString:html baseURL:nil];
于 2013-03-05T10:36:26.507 回答