UIWebview运行缓慢

时间:2010-10-29 13:41:54

标签: iphone objective-c cocoa-touch

UIWebview加载内容非常慢。

WebView=[[UIWebView alloc]initWithFrame:self.view.bounds];
WebView.delegate=self;
[WebView addSubview:spinner];
[self.view addSubview:WebView];
NSString *decodeString=[@"www.google.com" stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding];
[WebView loadRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:decodeString]]];

我做错了什么?

提前致谢

此致 Arunkumar.P

1 个答案:

答案 0 :(得分:0)

最后两行应该是:

[WebView loadRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:@"http://www.google.com/"]]];

您的网页浏览目前没有加载“慢”;实现错误委托方法,你会看到真正发生的事情。