UITableView 补全左侧15像素

2015-08-21  本文已影响147人  HJR

UITableView 补全左侧15像素:

-(void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath
{
    if ([cell respondsToSelector:@selector(setSeparatorInset:)]) 
    {
        [cell setSeparatorInset:UIEdgeInsetsZero];
    }
    if ([cell respondsToSelector:@selector(setPreservesSuperviewLayoutMargins:)]) 
    {
        [cell setPreservesSuperviewLayoutMargins:NO];
    }
    if ([cell respondsToSelector:@selector(setLayoutMargins:)]) 
    {
        [cell setLayoutMargins:UIEdgeInsetsZero];
    }
}
上一篇 下一篇

猜你喜欢

热点阅读