美文网首页
tableView的穿透效果

tableView的穿透效果

作者: 米亚流年 | 来源:发表于2018-05-29 14:13 被阅读0次

    设置tableView的frame为当前屏幕大小

    childVCView.MY_x = i * scrollView.MY_Width;
    childVCView.MY_y = 0;
    childVCView.MY_Height = [UIScreen mainScreen].bounds.size.height;

    设置tableview的内边距contentInset 防止cell被导航栏或者tabbar挡住

    self.tableView.contentInset = UIEdgeInsetsMake(99, 0, 49, 0)

    相关文章

      网友评论

          本文标题:tableView的穿透效果

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