Hi all,
I want to access/clear the back forward list as if the UIWebView is new again. Is there any public api or workaround to do this?
I've tried
while ([webview canGoback]) {
[webview goBack];
}
but that will freeze the device (simulator too)
Thanks!