I am using UIWebview to load html5 animations using javascript but its taking around 10-15 seconds before it starts loading page.
newdemo = [[UIWebView alloc]initWithFrame:CGRectMake(185.0, 216.0, 180, 180)];
newdemo.backgroundColor = [UIColor clearColor];
newdemo.opaque = NO;
[self.view addSubview:newdemo];
url1 = [NSURL fileURLWithPath:[[NSBundle mainBundle] pathForResource:@"A" ofType:@"html"] isDirectory:NO];
[newdemo stringByEvaluatingJavaScriptFromString:@"function (lib, img, cjs)"];
req1=[NSURLRequest requestWithURL:url1];
I am using following code for loading html page in my UIWebView "newdemo" and have tried to implement this code in viewDidLoad but no fast response and also tried to use this code in viewWillAppear but no success.
Any help would be appreciated...