我想在 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模拟器的错误。
谢谢