목록cell (1)
어흥
[Swift] TableView
1. TableView란? : Cell들을 표처럼 보여주는 뷰입니다. 2. 기본 사용 함수 //UITableViewDataSource : 생성할 Cell 개수 return func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int { return 5 } //TableView를 cell로 지정하고 반환 func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell { let cell = tableView.dequeueReusableCell(withIdentifier: "cell", for: indexPath) ..
iOS
2020. 9. 8. 16:10