失眠网,内容丰富有趣,生活中的好帮手!
失眠网 > iOS:UIScrollView UITableView UICollectionView顶部空白问题

iOS:UIScrollView UITableView UICollectionView顶部空白问题

时间:2023-11-17 19:51:19

相关推荐

iOS:UIScrollView UITableView UICollectionView顶部空白问题

UIScrollView、UITableView、UICollectionView顶部空白问题解决:配置下面代码即可解决。

if (@available(iOS 11.0,*)) {self.collectionView.contentInsetAdjustmentBehavior = UIScrollViewContentInsetAdjustmentNever;self.scrollView.contentInsetAdjustmentBehavior = UIScrollViewContentInsetAdjustmentNever;self.tableView.contentInsetAdjustmentBehavior = UIScrollViewContentInsetAdjustmentNever;}else {self.automaticallyAdjustsScrollViewInsets = NO;}

如果觉得《iOS:UIScrollView UITableView UICollectionView顶部空白问题》对你有帮助,请点赞、收藏,并留下你的观点哦!

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。