WKWebView reload() can't refresh current page

13,243

The first time load web page fail at offline. Then webview.url be nil. Try the following code:

func reloadButtonDidTap() {
    if webview.url != nil {
        webview.reload()
    } else {
        webview.load(URLRequest(url: originalURL))
    }
}
Share:
13,243
aboojan
Author by

aboojan

Updated on July 28, 2022

Comments

  • aboojan
    aboojan almost 2 years

    the first time load web page fail at offline. then I connect network call reload() to refresh current page, but it is not work, the WKNavigationDelegate can't get any callback.

    the function reloadFromOrigin() also not work

    but the doc says:

    /*! @abstract Reloads the current page.
     @result A new navigation representing the reload.
     */
    - (nullable WKNavigation *)reload;
    
    /*! @abstract Reloads the current page, performing end-to-end revalidation
     using cache-validating conditionals if possible.
     @result A new navigation representing the reload.
     */
    - (nullable WKNavigation *)reloadFromOrigin;
    

    Can someone help 🍭