webViewscrollViewTableView,为了防止滚动时出现偏移,底部黑框问题等

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了webViewscrollViewTableView,为了防止滚动时出现偏移,底部黑框问题等相关的知识,希望对你有一定的参考价值。

if ([self respondsToSelector:@selector(automaticallyAdjustsScrollViewInsets)]) {self.automaticallyAdjustsScrollViewInsets = NO;}

或者:_webView.opaque =NO;

具体场景如下:

- (void)viewDidLoad {

    self.title = @"菜品详情页";

    [super viewDidLoad];

    self.view.backgroundColor = [UIColor whiteColor];

    //加载web页面

    [self addWebViewDemo];

}

-(void)addWebViewDemo{

    _webView = [[UIWebView alloc]initWithFrame:CGRectMake(0, 64, JYEScreenWidth, JYEScreenHeight-64)];

    

    NSURL *url = [[NSURL alloc]initWithString:@"http://www.baidu.com"];

    NSURLRequest *request = [[NSURLRequest alloc]initWithURL:url];

    [_webView loadRequest:request];

    

    //if ([self respondsToSelector:@selector(automaticallyAdjustsScrollViewInsets)]) {self.automaticallyAdjustsScrollViewInsets = NO;}

    _webView.opaque =NO;

    _webView.scalesPageToFit = YES;

 

    [self.view addSubview:_webView];

}

 

以上是关于webViewscrollViewTableView,为了防止滚动时出现偏移,底部黑框问题等的主要内容,如果未能解决你的问题,请参考以下文章