// 设置颜色
tableView.separatorColor = [UIColor redColor];
// 设置端距,这里表示separator离左边和右边均80像素
tableView.separatorInset = UIEdgeInsetsMake(0,80, 0, 80);
// style
tableView.separatorStyle = UITableViewCellSeparatorStyleSingleLine;
时间: 2024-10-06 02:54:12