Reputation: 11
UIWebView
and back button in it. Upvotes: 1
Views: 1401
Reputation: 977
I thinks its better to check your view will appear method in that view
Upvotes: 0
Reputation: 3481
You should cache the URLs, so no URL is requested again.
Creating a URL request, you supply the cache policy:
NSURLRequest * req = [NSURLRequest requestWithURL:@"" cachePolicy:NSURLRequestReturnCacheDataElseLoad timeoutInterval:10.0f];
[myWebView loadRequest:req];
Upvotes: 2