UITableView分割线相关设置
// 设置颜色
tableView.separatorColor = [UIColor redColor];
// 设置端距,这里表示separator离左边和右边均80像素
tableView.separatorInset = UIEdgeInsetsMake(0,80, 0, 80);
// style
tableView.separatorStyle = UITableViewCellSeparatorStyleSingleLine;