iOS init UIWebView to clear navigation history

后端 未结 3 1141
面向向阳花
面向向阳花 2021-01-24 12:30

I am setting uiWebviewSocial as desired on IB and is loading requests as normal. However, later I need also to init this uiwebview in order to clear goBack history. I am using a

相关标签:
3条回答
  • 2021-01-24 13:09

    The problem is that after you are init'ing the new webviewBridge or webviewSocial, you are immediately overwriting the new object with the assignment on the next line. Remove the third line in each method.

    0 讨论(0)
  • 2021-01-24 13:13

    Well, I've been going aroundUIWebView in Stack Overflow these days and is a mess, for me at least.

    It seemsUIWebView cache works at its own, I mean we cannot change neither access some info that is exclusively managed by system...

    About your problem, it seems although yourUIWebView is sent to nil, it keeps getting info from cache... so, you should clear cache firstable You can check it here and there

    0 讨论(0)
  • 2021-01-24 13:26

    If I am not misunderstanding, when you load the view you get an "initial" webviewSocial (with history and contents??), then after some loadings you make in the UIWebView, these are stored as history in webviewBridge, isn't it? When you send webviewSocial to nil, that shall be empty... but NOT webviewBridge... and then if you are reloading webviewSocial with webviewBridge (which in fact is previous whole history), that's why it happens... I think

    Saludos

    0 讨论(0)
提交回复
热议问题