Reputation: 3945
I am loading a gif image in UIWebView
. I have a refresh button to refresh the UIWebView
. But when I am tapping nothing will happen. How can I reload the gif image in the same UIWebView
?
Upvotes: 1
Views: 799
Reputation: 860
[webView loadRequest:[NSURLRequest requestWithURL:theURL]]
this will refresh the page with the gif image
Upvotes: 2