if([_tableViewrespondsToSelector:@selector(setSeparatorInset:)]){
[_tableViewsetSeparatorInset:UIEdgeInsetsZero];
}
if([_tableViewrespondsToSelector:@selector(setLayoutMargins:)]){
[_tableViewsetLayoutMargins:UIEdgeInsetsZero];
}
#pragma mark - tableViewDelegate
- (void)tableView:(UITableView*)tableView willDisplayCell:(UITableViewCell*)cell forRowAtIndexPath:(NSIndexPath*)indexPath{
if([cellrespondsToSelector:@selector(setSeparatorInset:)]) {
[cellsetSeparatorInset:UIEdgeInsetsZero];
}
if([cellrespondsToSelector:@selector(setLayoutMargins:)]) {
[cellsetLayoutMargins:UIEdgeInsetsZero];
}
}
网友评论