kotowo
5/17/2017 - 11:35 AM

UITableView の separator の左端をくっつける

UITableView の separator の左端をくっつける

// Cell 部分のセパレータ

func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
  let cell = tableView.dequeueReusableCell(withIdentifier: cellIdentifier, for: indexPath)
  cell.layoutMargins = UIEdgeInsets.zero
  return cell
}

###TableView の空の部分のセパレータ

  • Sparator Inset -> Custom
  • Left -> 0
  • Right -> 0