1

我想在 UIwebviewcontroller 中显示一个链接。我已经搜索并找到了这个解决方案:

NSString *html = [NSString stringWithFormat:@"%@%@%@",@"<html><head></head><body><a style=\"font-family:Verdana, Geneva, sans-serif; font-size: 12px;\" href=\"", item.link, @"\">For more informations</a></body></html>"];
[webView loadHTMLString:html baseURL:nil];
[self.view addSubview:webView];

此解决方案适用于所有 IOS,但不适用于视网膜 4 英寸的 iphone。你能告诉我是我做错了什么还是iphone模拟器的错误。

谢谢

4

1 回答 1

0

对不起,链接不是问题,而是我的滚动视图与视网膜 4 英寸模拟器,因为我的 web 视图位于滚动视图的末尾。

于 2013-06-27T13:56:34.137 回答