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
答案 0 :(得分:0)
最后两行应该是:
[WebView loadRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:@"http://www.google.com/"]]];
您的网页浏览目前没有加载“慢”;实现错误委托方法,你会看到真正发生的事情。