1. 设置分割线的样式为None.
self.tableView.separatorStyle = UITableViewCellSeparatorStyleNone;
2.在自定义的cell里面重写frame
//自定义分割线
-(void)setFrame:(CGRect)frame{
frame.origin.y += 1; // 让cell的y值增加1(根据自己需要分割线的高度来进行调整)
frame.size.height -= 1; // 让cell的高度减1
[super setFrame:frame]; // 别忘了重写父类方法
}