在UITableView的Delegate代理方法中设置:
- (void) tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath
{
cell.separatorInset = UIEdgeInsetsZero;
[cell setLayoutMargins:UIEdgeInsetsZero];
}
本文共 291 字,大约阅读时间需要 1 分钟。
在UITableView的Delegate代理方法中设置:
- (void) tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath
{
cell.separatorInset = UIEdgeInsetsZero;
[cell setLayoutMargins:UIEdgeInsetsZero];
}
转载于:https://my.oschina.net/u/2534563/blog/632544