1. 程式人生 > >webview 去掉滾動條和上下黑灰色背景

webview 去掉滾動條和上下黑灰色背景

// 去掉webView的滾動條
    for (UIView *subView in [webView subviews])
    {
        if ([subView isKindOfClass:[UIScrollView class]])
        {
            // 不顯示豎直的滾動條
            [(UIScrollView *)subView setShowsVerticalScrollIndicator:NO];
        }
        //取消webview上下黑灰色背景
        webView.backgroundColor
= [UIColor clearColor]; [webView setOpaque:NO]; }