美文网首页
适配iOS11 - UITableview UICollecti

适配iOS11 - UITableview UICollecti

作者: panda_熊猫 | 来源:发表于2017-09-22 20:30 被阅读97次

前言:iOS11弃用了automaticallyAdjustsScrollViewInsets属性,新增contentInsetAdjustmentBehavior来替代它

OC 中

//声明tableView的位置 添加下面代码

if (@available(iOS 11.0, *)) {

_tableView.contentInsetAdjustmentBehavior = UIScrollViewContentInsetAdjustmentNever;

_tableView.contentInset = UIEdgeInsetsMake(64, 0, 49, 0);

_tableView.scrollIndicatorInsets = _tableView.contentInset;

}

swift 中

//声明tableView的位置 添加下面代码

if #available(iOS 11.0, *) {

tableView.contentInsetAdjustmentBehavior = .never

tableView.contentInset = UIEdgeInsetsMake(64, 0, 49, 0)

tableView.scrollIndicatorInsets = tableView.contentInset

}

相关文章

网友评论

      本文标题:适配iOS11 - UITableview UICollecti

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