UIWebView PaginationMode always show white background, how to make it transparent?

前端 未结 3 1484
春和景丽
春和景丽 2021-02-10 14:05

I try to use \'paginationMode\' to make my html-content pagination for iOS 7 latter.

//set webview to transparent
webView.backgroundColor = [UIColor clearColor]         


        
3条回答
  •  庸人自扰
    2021-02-10 14:25

    Maybe try to set the background of the scrollView to clear ?

    webView.scrollView.backgroundColor = [UIColor clearColor];
    

    EDIT Ok so it seems that after setting

    UIWebPaginationMode
    

    The background become white behind :/

提交回复
热议问题