TableViewCell does not reach the left boundary.
In. in the m file, add the following two methods to solve/*** the following two methods solve the problem that the cell split line does not reach the left boundary */-(void) viewDidLayoutSubviews {if ([self. tableView respondsToSelector: @ selector (setSeparatorInset :)]) {[self. tableView setSeparatorInset: UIEdgeInsetsZero];} if ([self. tableView respondsToSelector: @ selector (setLayoutMargins :)]) {[self. tableView setLayoutMargins: UIEdgeInsetsZero];}/*** this method and the above method solve the problem that the cell split line does not reach the Left Border */-(void) tableView :( UITableView *) tableView willDisplayCell :( UITableViewCell *) cell forRowAtIndexPath :( NSIndexPath *) indexPat {if ([cell respondsToSelector: @ selector (setLayoutMargins :)]) {[cell setLayoutMargins: seconds];} if ([cell respondsToSelector: @ selector (setSeparatorInset :)]) {[cell setSeparatorInset: UIEdgeInsetsZero];}