iOS8之后将tableView的separator设置从屏幕最左边开始

分割线移除左边15个单位长度的步骤 :

1.separatorInset设置为UIEdgeInsetsZero,至于是table view还是table view cell,随你

2.table view cell的layoutMargins设置为UIEdgeInsetsZero

确定cell的加载方式,如果from nib,那么步骤1、2足矣。如果from code,那么两种处理方式任选其一:

将cell的preservesSuperviewLayoutMargins设置为NO

table view的layoutMargins设置为UIEdgeInsetsZero

重新运行你的工程吧!会有惊喜

你可能感兴趣的:(iOS8之后将tableView的separator设置从屏幕最左边开始)