The first step:
UITableView Remove the split line from the system
_tableview.separatorstyle = Uitableviewcellseparatorstylenone;
Step Two:
overriding DrawRect in a custom UITableViewCell: Method
#pragma mark- plot Cell splitter lines
-(void) DrawRect: (cgrect) Rect {
Cgcontextref context = Uigraphicsgetcurrentcontext ();
Cgcontextsetfillcolorwithcolor (context, [Uicolor Clearcolor]. Cgcolor);
Cgcontextfillrect (context, rect);
on the split line,
Cgcontextsetstrokecolorwithcolor (context, [Uicolor colorwithred:198/255.0 green:198/255.0 blue:198/255.0 alpha:1]. Cgcolor);
Cgcontextstrokerect (context, CGRectMake (0, 0, rect.size.width, 1));
Lower Split Line
Cgcontextsetstrokecolorwithcolor (context, [Uicolor colorwithred:198/255.0 green:198/255.0 blue:198/255.0 alpha:1]. Cgcolor);
Cgcontextstrokerect (context, CGRectMake (0, Rect.size.height, rect.size.width, 1));
}
UITableViewCell drawing a split line