UIWebView throwing exception for [WebActionDisablingCALayerDelegate setBeingRemoved:]

前端 未结 6 1908
清酒与你
清酒与你 2021-01-30 01:31

When running against iOS 8, I began to see the following exception coming from the deep bowels of UIWebView:

[WebActionDisablingCALayerDelega

6条回答
  •  感情败类
    2021-01-30 02:15

    In my case the problem was a

    inside of iframe content. The table width was greater than the iframe width defined via CSS. The iframe scrolling was off, and the table has stretched the iframe to the minimum calculated width of the table. Other side effect: content of the iframe was not completely visible (cut off on the right side).

    |--- Available viewport width -------------|
    |--- defined and estimated iframe width ---|
    |--- table width in the iframe content > than defined iframe width ---|
    |--- iframe stretched to the calculated table width ------------------|
    

    Removing the table form iframe content has fixed the problem.

    提交回复
    热议问题