iOS7上tableView的分割线左边短了一点

来源:互联网 发布:英文写作软件 编辑:程序博客网 时间:2024/06/11 00:51

ios7里面tableViewCell上面的分割线,左边少了20个像素,用下面的方法,可以让分割线完整显示出来

if ([_tableView respondsToSelector:@selector(setSeparatorInset:)]) {           [_tableView setSeparatorInset:UIEdgeInsetsZero];       }


0 0
原创粉丝点击