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

前端 未结 3 625
一生所求
一生所求 2021-02-10 13:48

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:35

    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 :/

提交回复
热议问题