// 分割线样式

tableV.separatorStyle = UITableViewCellSeparatorStyleSingleLine;
// 分割线颜色
tableV.separatorColor = [UIColor greenColor];
// 行高 - 如果使用协议方法设置行高, 此句无效
tableV.rowHeight = 200;

iOS-UI-TableView-分割线样式-分割线颜色-行(Cell)高-YIem