WKWebView inside Scroll View

前端 未结 3 1334
遥遥无期
遥遥无期 2021-02-10 16:53

How can I put a WKWebView inside a Scroll View consider that I must have others elements after Web View.

. View ... Scroll View ....... ImageView ....... WKWebView

3条回答
  •  终归单人心
    2021-02-10 17:29

    It's wrong approach. You should use WKWebView's scrollView.

    You need reserve space for image and button with html margins using javascript

    [NSString stringWithFormat:@"document.body.style.margin = '%dpx %dpx %dpx %dpx'", (int)margins.top, (int)margins.right, (int)margins.bottom, (int)margins.left]
    

    or directly in html body if you able to access it.

    Add imageview and button into WKWebView's scrollView.

提交回复
热议问题