[iOS] UITableView Cell 왼쪽 여백지우기
Custom Cell을 이용해서 TableView 구성 중인데 모든 곳에 autolayout superView 0 으로 잡아도 왼쪽 여백이 계속 생기는 것이다. 그래서 구글링을 통해 알아보니 생각보다 많은 사람들이 이런 상황을 겪었던 것 같다. ( 참고링크 1, 참고링크 2 )
해결법
// view controller
...
tableView.register(UITableViewCell.self, forCellReuseIdentifier: "identifier")
tableView.separatorInset = .zero
tableView.directionalLayoutMargins = .zero
tableView.layoutMargins = .zero
...
// data source
...
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: "identifier")!
cell.directionalLayoutMargins = .zero
cell.layoutMargins = .zero
cell.contentView.directionalLayoutMargins = .zero
cell.contentView.layoutMargins = .zero
return cell
}
Author And Source
이 문제에 관하여([iOS] UITableView Cell 왼쪽 여백지우기), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@leedool3003/iOS-UITableView-Cell-왼쪽-여백지우기저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)