iOS/iOS SeSAC 2기 TIL

iOS swift TableViewController 정적구성요소(Static Cells)

Developer-Michelle 2022. 7. 18. 15:09

iOS swift TableViewController 정적구성요소(Static Cells)

(TableView content: static cells 로 하는 경우)

 

selection 관련

selection : Default => 클릭 시 회색으로 됨

selection: None => 클릭시 아무 반응 없음.

 

Style 관련

Style: Plain => 스크롤할 때 헤더가 고정되어있음

Style: Grouped => 스크롤할 때 헤더 고정되지 않고 같이 스크롤 됨

 

 

Separator Inset: left 0으로 하면 앞에 간격이 없이 딱 붙게 됨.

 

 

 

참고)

Dynamic Prototypes vs Static Cell

코드로 구현 vs 스토리보드로 구현

 

 

https://ios-development.tistory.com/447

 

[iOS - swift] 1. iOS 스러운, storyboard 활용 방법 (static prototype cell, segue, gesture)

1. iOS 스러운, storyboard 활용 방법 (static prototype cell, segue, gesture) 2. iOS 스러운, storyboard 활용 방법 (dynamic prototype cell, unwind segue, storybaord reference) storyboard 활용 (UI, flow..

ios-development.tistory.com

 

tableView 스타일) Plain vs Grouped vs Inset Grouped

https://ios-development.tistory.com/538

 

[iOS - swift] tableView 스타일) Plain vs Grouped vs Inset Grouped

TableView의 3가지 style section의 개념 = header + rows + footer grouped는 header와 footer의 간격을 늘려주는 것 inset grouped는 rows들의 bounds가 둥근 모형으로되고 row양 옆에 inset이 들어가는 것 pla..

ios-development.tistory.com

https://poisonf2.tistory.com/95

 

[iOS] - UITableView

노션에서 정리하고 옮기니까 이상 이상... UITableView 클래스 NSObject→UIResponder→UIView→UIScrollView→UITableView 테이블 뷰는 수직으로 스크롤되는 컨텐츠를 표현합니다. UITableViewCell을 이용하여..

poisonf2.tistory.com