Hello All,
UIWebview load the content very slow.
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]]];
What i did wrong?
Thanks in advance
Regards, Arunkumar.P