美文网首页
DZNEmptyDataSet 位置偏移

DZNEmptyDataSet 位置偏移

作者: th先生 | 来源:发表于2022-04-01 16:59 被阅读0次

tableview数据量大翻页后,清空数据,占位图会发生偏移。

- (CGPoint)offsetForEmptyDataSet:(UIScrollView *)scrollView {
    return CGPointMake(0, -(self.tableView.contentInset.top - self.tableView.contentInset.bottom) / 2);
}

- (void)emptyDataSetWillAppear:(UIScrollView *)scrollView {
    [self.tableView setContentOffset:CGPointMake(0, -self.tableView.contentInset.top)];
}

相关文章

网友评论

      本文标题:DZNEmptyDataSet 位置偏移

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