UIWebView 大全









"http://t1.baidu.com/it/u=1075557596,3331641536&fm=15&gp=0.jpg">

这是文字

 



////获取html到NSString

 NSURL *url = [NSURL URLWithString:@"http://www.xtox.net/product/detail.action?product.id=11"];

 NSString *strHtml = [NSString stringWithContentsOfURL:url encoding:NSUTF8StringEncoding error:nil];

   
////显示到UIWebView
    [self.m_web loadHTMLString:strHtml baseURL:nil];

 

 

关闭UIWebView的数字自动解析功能:

aWebView.dataDetectorTypes = UIDataDetectorTypeNone;

 

UIWebView 大全_第1张图片

你可能感兴趣的:(UIWebView 大全)