美文网首页
iOS11 tableView距离电量栏之间有空隙,肿么办?😰

iOS11 tableView距离电量栏之间有空隙,肿么办?😰

作者: Mrxiaowang | 来源:发表于2017-11-23 09:17 被阅读7次

    处理方法 

    NSString *version = [UIDevice currentDevice].systemVersion;

    if (version.doubleValue >= 11.0) {

    self.mainTableView.contentInsetAdjustmentBehavior = UIScrollViewContentInsetAdjustmentNever;

    } else {

    self.automaticallyAdjustsScrollViewInsets = NO;

    }

    相关文章

      网友评论

          本文标题:iOS11 tableView距离电量栏之间有空隙,肿么办?😰

          本文链接:https://www.haomeiwen.com/subject/ociavxtx.html