TableView Row(ํ) ๋์ด
์ผ๊ด์ ์ธ ํ ๋์ด๋ฅผ ์กฐ์ ํ๋ ๊ฒ์ด๋ผ๋ฉด, ์ ์์ ์ฝ๋๋ฅผ ์ฌ์ฉํ๋ ๊ฒ์ด ๋ ๋์๋ณด์ธ๋ค.
self.tableView.rowHeight = 80
// ์
์ ๋์ด(์ต์
, ๋น๋ ๋์) (feat. tableView.rowHeight)
// ๋ฉ์๋์ ์ฐ์ ์์๊ฐ ๋ ๋๋ค.
override func tableView(_ tableView: UITableView, heightForRowAt indexPath: IndexPath) -> CGFloat {
return 100
}
์ผํญ์ฐ์ฐ์์ ์ฌ์ฉ
์ผํญ์ฐ์ฐ์๋ฅผ ์ฒ์ ์๊ฒ ๋์์ ๋, ์ ๋ง ๋ชจ๋ ๋ถ๋ถ์ ์ฝ๋๋ฅผ ๋จ์ฉํ์๋ค. ๊ทธ๋ฐ๋ฐ ์ฌ์ฉํ๋ค๋ณด๋ ์คํ๋ ค ์ฝ๋๋ฅผ ์ดํดํ๋ ๋ฐ ์๊ฐ์ด ๊ฑธ๋ฆฌ๋ ๊ฒฝ์ฐ๋ ๋ง์๊ณ , ์ฌ๋ฌ ์กฐ๊ฑด์ด ๊ฒน์ณ ์๋ ๊ฒฝ์ฐ์๋ ์ฌ์ฉํ๊ธฐ ์ด๋ ค์ ๋ค. ๊ทธ๋ ๊ธฐ์ ์ ์ ํ ์๊ฐ์ ์ฌ์ฉํ๋ ๊ฒ์ด ํ์ํ๋ค๊ณ ์๊ฐ์ด ๋ค์๋ค. ์ผํญ์ฐ์ฐ์์ ์ฌ์ฉ์ ์คํ๋ ค ์ง์ํ๋ ๊ฒ์ด ์ข์๋ณด์๊ณ , ์ ๋ง ๊ฐ๋จํ ๋ถ๋ถ์๋ง ์ฌ์ฉํ๋ ๊ฒ์ด ์ข์๋ณด์ธ๋ค.
if indexPath.row % 2 == 0 {
cell.imageView?.image = UIImage(systemName: "star")
cell.backgroundColor = .white
} else {
cell.imageView?.image = UIImage(systemName: "star.fill")
cell.backgroundColor = .systemGray6
}
cell.imageView?.image = indexPath.row % 2 == 0 ? UIImage(systemName: "star") : UIImage(systemName: "star.fill")
cell.backgroundColor = indexPath.row % 2 == 0 ? .white : .systemGray6
์ ์ 2๊ฐ ์ด์ ์ฌ์ฉํ๋ค๋ฉด?
ํ๋์ ํ ์ด๋ธ ๋ทฐ์์ ์ฌ๋ฌ ๊ฐ์ ์ ์ ์ฌ์ฉํ๊ณ ์ถ์ ๊ฒฝ์ฐ๊ฐ ์๋ค. ์ด๋ฐ ๊ฒฝ์ฐ ์์คํ ์ด ์ ์ ํ ์ ์ ๊บผ๋ด์ ํ ์ด๋ธ๋ทฐ์ ๋ฟ๋ ค์ค ์ ์์ด์ผ ํ๋๋ฐ ๊ทธ๊ฒ์ ๊ฐ๋ฅํ๊ฒ ํ๋๋ก identifier๊ฐ ์ฌ์ฉ๋๋ค. ์ ์ ์ด๋ฆํ๋ผ๊ณ ์๊ฐํ๋ฉด ํธํ ๊ฒ ๊ฐ๋ค.
์ฌ์ฌ์ฉ ๋ฉ์ปค๋์ฆ
1000๊ฐ์ ์ ์ ํ๋ฉด์ ๋ณด์ฌ์ค ๊ฒ์ด๋ผ๊ณ ํด์ ์ ์ ํ ๋ฒ์ ๋ค ๋ง๋ค์ด๋๋ ๊ฒ์ ์๋๋ค. ํ๋ฉด์๋ ๋น์ฅ ํ์ํ ์ ๋ง ๋ณด์ฌ์ฃผ๊ณ ๋ง๋ค์ด ๋์ ์ ์ ์ฌ์ฌ์ฉํ๋ ๊ตฌ์กฐ๋ก ์ด๋ฃจ์ด์ง๋ค. ๋ฅํ ๋ฉ์ปค๋์ฆ์ ์ดํ์ ์์๋ณด๋๋ก ํ์.
Enum์ ํ์ฉํ ์ฝ๋ ๊ฐ์

์ฐ์ธก ํ๋ฉด์ ์ด๋ป๊ฒ ๊ตฌ์ฑํ ์ ์์๊น? ๊ฐ๋จํ๊ฒ TableViewController๋ฅผ ์ด์ฉํด๋ณด๋๋ก ํ์.
CaseIterable
์ด๊ฑฐํ์ ๋ฐฐ์ด์ฒ๋ผ ์ฌ์ฉํ ์ ์๋๋ก ๋์์ฃผ๋ ํ๋กํ ์ฝ
CustomStringConvertible
์๋ ๋งํฌ ์ฐธ๊ณ
[Swift] CustomStringConvertible
ํ๊ฐ์ง ์๋ก ์๊ฒ๋ ๊ฒ์ CustomStringConvertible ํ๋กํ ์ฝ์ ์ฑํํ๊ณ , ์ถ๋ ฅ์ ํ๋ฉด description์ผ๋ก ์ ํด ๋์ String ๊ฐ์ผ๋ก ์ถ๋ ฅ๋๊ธธ๋ ๊ทธ ๋์ Type ์ญ์ String์ธ ์ค ์์์ง๋ง Type์ ๊ทธ๋๋ก ์ด๊ฑฐํ ํ์ ์ด์๋ค. print(SettingType.total)์ ๊ฐ์ด ์ถ๋ ฅ์ ํ๋ฉด "์ ์ฒด ์ค์ "๊ณผ ๊ฐ์ด ์ถ๋ ฅ๋๋๋ฐ ์ด๋ฅผ ํค๋์ ํ์ด๋ฅผ๋ก ์ฌ์ฉํ ์ ์์๋ ์ด์ ๋ String ํ์ ์ด ์๋๋ผ ์ด๊ฑฐํ ํ์ ์ด์๊ธฐ ๋๋ฌธ์ด๋ค. ๊ทธ๋์ String์ผ๋ก ๋ณํํด์ฃผ์ด์ ์ฝ๋๋ฅผ ์์ฑํ์๋ค.
// ๋ค์๊ณผ ๊ฐ์ ์ธ์คํด์ค ๋ฉ์๋๋ ์๋๋ผ.
String(describing: <#T##CustomStringConvertible#>)
๋์ ๊ฒฝ์ฐ ์๋์ ๊ฐ์ด ์ฝ๋๋ฅผ ์์ฑํด์ ์์ ํ๋ฉด์ ๊ตฌํํ๋ค.
import UIKit
enum SettingType: CaseIterable, CustomStringConvertible {
case total
case personal
case etc
var contents: [String] {
switch self {
case .total:
return ["๊ณต์ง์ฌํญ", "์คํ์ค", "๋ฒ์ ์ ๋ณด"]
case .personal:
return ["๊ฐ์ธ/๋ณด์", "์๋ฆผ", "์ฑํ
", "๋ฉํฐํ๋กํ"]
case .etc:
return ["๊ณ ๊ฐ์ผํฐ/๋์๋ง"]
}
}
var numberOfRowInSections: Int {
return contents.count
}
var description: String {
switch self {
case .total:
return "์ ์ฒด ์ค์ "
case .personal:
return "๊ฐ์ธ ์ค์ "
case .etc:
return "๊ธฐํ"
}
}
}
final class SettingViewController: UITableViewController {
override func numberOfSections(in tableView: UITableView) -> Int {
return SettingType.allCases.count
}
override func tableView(_ tableView: UITableView, titleForHeaderInSection section: Int) -> String? {
return String(describing: SettingType.allCases[section])
}
override func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return SettingType.allCases[section].numberOfRowInSections
}
override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
guard let cell = tableView.dequeueReusableCell(withIdentifier: "settingCell") else { return UITableViewCell() }
cell.textLabel?.text = SettingType.allCases[indexPath.section].contents[indexPath.row]
return cell
}
}
๋ค๋น๊ฒ์ด์ ์ปจํธ๋กค๋ฌ ์ง์ ์์น
- ํญ ๋ฐ + ๋ค๋น๊ฒ์ด์
- ๋ค๋น๊ฒ์ด์ + ๊ฐ Child ๋ทฐ ์ปจํธ๋กค๋ฌ
- 1๋ฒ์ ๊ฒฝ์ฐ, ๊ฐ ๋ทฐ ์ปจํธ๋กค๋ฌ์ ํญ ๋ฐ ์์ดํ ์ ์ค์ ํ๊ธฐ๊ฐ ํธํ๋ค.
- 2๋ฒ์ ๊ฒฝ์ฐ, ๋ค๋น๊ฒ์ด์ ๋ฐ ๊ตฌํ์ด ํธํ๋ค. ๋ค๋น๊ฒ์ด์ ๋ฐ ํ์ดํ, ์์ดํ ์ ์ค์ ํ๊ธฐ๊ฐ ํธํ๋ค.
Extension
- ํ์ํ ์์๋ค๋ง ์ต์คํ ์ ์ผ๋ก ๋ง๋ค์.
- ํ ๊ตฐ๋ฐ์์๋ง ์ฌ์ฉํ๋ค๋ฉด ์ต์คํ ์ ์ผ๋ก ๋ง๋ค์ง ์๋ ๊ฒ์ด ์ข๋ค.
- UIViewController+Extension ์์ 100๊ฐ์ ํจ์๋ฅผ ์ถ๊ฐ๋ก ์ ์ธํด๋์๋ค๊ณ ๊ฐ์ ํด๋ณด์. UIViewController๋ฅผ ์์ํด์ค๊ฑฐ๋ ์ฌ์ฉํ๋ ค๊ณ ํ ๋ ๊ทธ ํจ์๋ค๊น์ง ๋ถ๋ฌ์ค๊ธฐ ๋๋ฌธ์ ๋ถํ์ํ ํธ์ถ์ด ์ผ์ด๋ ์ ์๊ณ ๋ฌด๊ฑฐ์์ง๋ค.
Store Property
- ์ ์ฅ ํ๋กํผํฐ๋ ํฌํจํ ์ ์๋ค.
- ์ ์ธํ๋ ์์ ์ ๋ฉ๋ชจ๋ฆฌ์ ์ฌ๋ผ๊ฐ๊ธฐ ๋๋ฌธ์ ํ์ฅ์ ํํ๋ก ์ฌ์ฉํ ์ ์๋ค.
- cf) ๋ฉ์๋๋ ํธ์ถํ๋ ์์ ์ ์ฌ์ฉ๋๊ธฐ ๋๋ฌธ์ ํ์ฅ์ ํ ์ ์๋ ๊ฒ์ด๋ค.
Issue
- TableView ViewController ์ฐ๊ฒฐ ์ด์ (Xcode ๋๊ณ ์ผ๊ธฐ, Clean Build Folder, ์ญ์ผ๋ก ์ฐ๊ฒฐํ๊ธฐ)
- Identifier ํด๋จผ ์๋ฌ (Cell Id๋ ์ ํํ ์ฐ์)
- numberOfRowInSection (๋ฉ์๋ ์ ํํ ์ฌ์ฉํ์)
์ปค์คํ ์ ์์ฑํ๊ธฐ
- ์ ํด๋์ค ํ์ผ ์์ฑ
- ์ ๊ณผ ํด๋์ค ์ฐ๊ฒฐ (์ ํํ ๋งค์นญ์์ผ์ฃผ์ด์ผ ํจ)
- ์ identifier ์ค์
- ์ ๊บผ๋ด๊ธฐ
์ ์ถ๊ฐํ๊ธฐ(๊ฐฑ์ ํ๊ธฐ)
ReloadData
๋ฐฐ์ด์ ๋ฐ์ดํฐ๋ฅผ ์ ์ถ๊ฐํด์ค๋ค๊ณ ํด๋, ํ ์ด๋ธ๋ทฐ์๋ ๋ณ๊ฒฝ ์ฌํญ์ด ๋ฐ์๋์ง ์๋๋ค. ๊ทธ๋ ๊ธฐ ๋๋ฌธ์ UI๋ฅผ ๋ค์ ๊ทธ๋ฆฌ๋ผ๊ณ TableView์ ์์ฒญํ ํ์๊ฐ ์๋ค. ๋ฐ์ดํฐ๊ฐ ๋ฌ๋ผ์ง๋ ์์ ์ ์ ์ ํ ์์ฒญ๋์ด์ผ ํ๋ค. ๋ค์๊ณผ ๊ฐ์ ๋ฉ์๋๋ฅผ ํธ์ถํด์ ํ ์ด๋ธ๋ทฐ๋ฅผ ๋ค์ ๊ทธ๋ฆฌ๋๋ก ํ๋ค.
tableView.reloadData()
reloadData()์์ ์๋ ๋ค์ ์์ ์ด ์คํ๋๋ค.
- numberOfItemsInSection ๋ฉ์๋ : cell์ ๊ฐ์ ๊ฒฐ์
- cellForItemAt ๋ฉ์๋ : ํ๋ฉด์ ๋ณด์ฌ์ง ๋งํผ์ ์ ์์ฑ
๋งค๋ฒ ์ ์ฒด๋ฅผ ๊ฐฑ์ ํด์ผ ํ ๊น?
Section, Row๋ง ๊ฐฑ์ ํ ์๋ ์๋ค. ์ ์ ํ ์ ํํด์ ์ฌ์ฉํ๋๋ก ํ์.
- reloadSections()
- reloadRows()
์์ ์ฝ๋
import UIKit
class BucketlistTableViewController: UITableViewController {
var list = ["๋ฒ์ฃ๋์", "ํ๊ฑด", "ํ ๋ฅด"]
@IBOutlet weak var userTextField: UITextField!
override func viewDidLoad() {
super.viewDidLoad()
self.tableView.rowHeight = 90
}
@IBAction func userTextFieldDidFinish(_ sender: UITextField) {
self.list.append(sender.text!)
self.tableView.reloadData()
}
}
// MARK: - Methods
extension BucketlistTableViewController {
override func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return self.list.count
}
override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: String(describing: BucketlistTableViewCell.self), for: indexPath) as! BucketlistTableViewCell
cell.bucketlistLabel.text = self.list[indexPath.row]
cell.bucketlistLabel.font = .boldSystemFont(ofSize: 18)
return cell
}
}
ํ ์ด๋ธ๋ทฐ ๊ด๋ จ ๋ฉ์๋ ๋ฐ ๊ธฐ๋ฅ
์คํฌ๋กค ์ ํค๋ณด๋ dismiss

Reload
self.tableView.reloadData()
self.tableView.reloadSections(IndexSet(0...0), with: .fade)
self.tableView.reloadRows(at: [IndexPath(row: 0, section: 0), IndexPath(row: 1, section: 0)], with: .fade)
Move & Swipe
override func tableView(_ tableView: UITableView, canMoveRowAt indexPath: IndexPath) -> Bool {
// ์
์ด๋
}
override func tableView(_ tableView: UITableView, trailingSwipeActionsConfigurationForRowAt indexPath: IndexPath) -> UISwipeActionsConfiguration? {
// ์ญ์
}
override func tableView(_ tableView: UITableView, leadingSwipeActionsConfigurationForRowAt indexPath: IndexPath) -> UISwipeActionsConfiguration? {
// ์ฆ๊ฒจ์ฐพ๊ธฐ ํ ๊ณ ์
}
Default Edit(+Delete)

// ํธ์ง ๊ฐ๋ฅํ ์ํ๋ก ๋ง๋ค ์ ์์
override func tableView(_ tableView: UITableView, canEditRowAt indexPath: IndexPath) -> Bool {
return true
}
override func tableView(_ tableView: UITableView, commit editingStyle: UITableViewCell.EditingStyle, forRowAt indexPath: IndexPath) {
if editingStyle == .delete {
// ๋ฐฐ์ด ์ญ์ ํ์ ํ
์ด๋ธ ๋ทฐ ๊ฐฑ์
list.remove(at: indexPath.row)
tableView.reloadSections(IndexSet(0...0), with: .automatic)
}
}
'๐ฑ SeSAC' ์นดํ ๊ณ ๋ฆฌ์ ๋ค๋ฅธ ๊ธ
[SeSAC] 220721 TIL (0) | 2022.07.21 |
---|---|
[SeSAC] 220720 TIL (0) | 2022.07.21 |
[SeSAC] 220718 TIL (0) | 2022.07.21 |
[SeSAC] 220715 TIL (0) | 2022.07.21 |
[SeSAC] 220714 TIL (0) | 2022.07.21 |
TableView Row(ํ) ๋์ด
์ผ๊ด์ ์ธ ํ ๋์ด๋ฅผ ์กฐ์ ํ๋ ๊ฒ์ด๋ผ๋ฉด, ์ ์์ ์ฝ๋๋ฅผ ์ฌ์ฉํ๋ ๊ฒ์ด ๋ ๋์๋ณด์ธ๋ค.
self.tableView.rowHeight = 80
// ์
์ ๋์ด(์ต์
, ๋น๋ ๋์) (feat. tableView.rowHeight)
// ๋ฉ์๋์ ์ฐ์ ์์๊ฐ ๋ ๋๋ค.
override func tableView(_ tableView: UITableView, heightForRowAt indexPath: IndexPath) -> CGFloat {
return 100
}
์ผํญ์ฐ์ฐ์์ ์ฌ์ฉ
์ผํญ์ฐ์ฐ์๋ฅผ ์ฒ์ ์๊ฒ ๋์์ ๋, ์ ๋ง ๋ชจ๋ ๋ถ๋ถ์ ์ฝ๋๋ฅผ ๋จ์ฉํ์๋ค. ๊ทธ๋ฐ๋ฐ ์ฌ์ฉํ๋ค๋ณด๋ ์คํ๋ ค ์ฝ๋๋ฅผ ์ดํดํ๋ ๋ฐ ์๊ฐ์ด ๊ฑธ๋ฆฌ๋ ๊ฒฝ์ฐ๋ ๋ง์๊ณ , ์ฌ๋ฌ ์กฐ๊ฑด์ด ๊ฒน์ณ ์๋ ๊ฒฝ์ฐ์๋ ์ฌ์ฉํ๊ธฐ ์ด๋ ค์ ๋ค. ๊ทธ๋ ๊ธฐ์ ์ ์ ํ ์๊ฐ์ ์ฌ์ฉํ๋ ๊ฒ์ด ํ์ํ๋ค๊ณ ์๊ฐ์ด ๋ค์๋ค. ์ผํญ์ฐ์ฐ์์ ์ฌ์ฉ์ ์คํ๋ ค ์ง์ํ๋ ๊ฒ์ด ์ข์๋ณด์๊ณ , ์ ๋ง ๊ฐ๋จํ ๋ถ๋ถ์๋ง ์ฌ์ฉํ๋ ๊ฒ์ด ์ข์๋ณด์ธ๋ค.
if indexPath.row % 2 == 0 {
cell.imageView?.image = UIImage(systemName: "star")
cell.backgroundColor = .white
} else {
cell.imageView?.image = UIImage(systemName: "star.fill")
cell.backgroundColor = .systemGray6
}
cell.imageView?.image = indexPath.row % 2 == 0 ? UIImage(systemName: "star") : UIImage(systemName: "star.fill")
cell.backgroundColor = indexPath.row % 2 == 0 ? .white : .systemGray6
์ ์ 2๊ฐ ์ด์ ์ฌ์ฉํ๋ค๋ฉด?
ํ๋์ ํ ์ด๋ธ ๋ทฐ์์ ์ฌ๋ฌ ๊ฐ์ ์ ์ ์ฌ์ฉํ๊ณ ์ถ์ ๊ฒฝ์ฐ๊ฐ ์๋ค. ์ด๋ฐ ๊ฒฝ์ฐ ์์คํ ์ด ์ ์ ํ ์ ์ ๊บผ๋ด์ ํ ์ด๋ธ๋ทฐ์ ๋ฟ๋ ค์ค ์ ์์ด์ผ ํ๋๋ฐ ๊ทธ๊ฒ์ ๊ฐ๋ฅํ๊ฒ ํ๋๋ก identifier๊ฐ ์ฌ์ฉ๋๋ค. ์ ์ ์ด๋ฆํ๋ผ๊ณ ์๊ฐํ๋ฉด ํธํ ๊ฒ ๊ฐ๋ค.
์ฌ์ฌ์ฉ ๋ฉ์ปค๋์ฆ
1000๊ฐ์ ์ ์ ํ๋ฉด์ ๋ณด์ฌ์ค ๊ฒ์ด๋ผ๊ณ ํด์ ์ ์ ํ ๋ฒ์ ๋ค ๋ง๋ค์ด๋๋ ๊ฒ์ ์๋๋ค. ํ๋ฉด์๋ ๋น์ฅ ํ์ํ ์ ๋ง ๋ณด์ฌ์ฃผ๊ณ ๋ง๋ค์ด ๋์ ์ ์ ์ฌ์ฌ์ฉํ๋ ๊ตฌ์กฐ๋ก ์ด๋ฃจ์ด์ง๋ค. ๋ฅํ ๋ฉ์ปค๋์ฆ์ ์ดํ์ ์์๋ณด๋๋ก ํ์.
Enum์ ํ์ฉํ ์ฝ๋ ๊ฐ์

์ฐ์ธก ํ๋ฉด์ ์ด๋ป๊ฒ ๊ตฌ์ฑํ ์ ์์๊น? ๊ฐ๋จํ๊ฒ TableViewController๋ฅผ ์ด์ฉํด๋ณด๋๋ก ํ์.
CaseIterable
์ด๊ฑฐํ์ ๋ฐฐ์ด์ฒ๋ผ ์ฌ์ฉํ ์ ์๋๋ก ๋์์ฃผ๋ ํ๋กํ ์ฝ
CustomStringConvertible
์๋ ๋งํฌ ์ฐธ๊ณ
[Swift] CustomStringConvertible
ํ๊ฐ์ง ์๋ก ์๊ฒ๋ ๊ฒ์ CustomStringConvertible ํ๋กํ ์ฝ์ ์ฑํํ๊ณ , ์ถ๋ ฅ์ ํ๋ฉด description์ผ๋ก ์ ํด ๋์ String ๊ฐ์ผ๋ก ์ถ๋ ฅ๋๊ธธ๋ ๊ทธ ๋์ Type ์ญ์ String์ธ ์ค ์์์ง๋ง Type์ ๊ทธ๋๋ก ์ด๊ฑฐํ ํ์ ์ด์๋ค. print(SettingType.total)์ ๊ฐ์ด ์ถ๋ ฅ์ ํ๋ฉด "์ ์ฒด ์ค์ "๊ณผ ๊ฐ์ด ์ถ๋ ฅ๋๋๋ฐ ์ด๋ฅผ ํค๋์ ํ์ด๋ฅผ๋ก ์ฌ์ฉํ ์ ์์๋ ์ด์ ๋ String ํ์ ์ด ์๋๋ผ ์ด๊ฑฐํ ํ์ ์ด์๊ธฐ ๋๋ฌธ์ด๋ค. ๊ทธ๋์ String์ผ๋ก ๋ณํํด์ฃผ์ด์ ์ฝ๋๋ฅผ ์์ฑํ์๋ค.
// ๋ค์๊ณผ ๊ฐ์ ์ธ์คํด์ค ๋ฉ์๋๋ ์๋๋ผ.
String(describing: <#T##CustomStringConvertible#>)
๋์ ๊ฒฝ์ฐ ์๋์ ๊ฐ์ด ์ฝ๋๋ฅผ ์์ฑํด์ ์์ ํ๋ฉด์ ๊ตฌํํ๋ค.
import UIKit
enum SettingType: CaseIterable, CustomStringConvertible {
case total
case personal
case etc
var contents: [String] {
switch self {
case .total:
return ["๊ณต์ง์ฌํญ", "์คํ์ค", "๋ฒ์ ์ ๋ณด"]
case .personal:
return ["๊ฐ์ธ/๋ณด์", "์๋ฆผ", "์ฑํ
", "๋ฉํฐํ๋กํ"]
case .etc:
return ["๊ณ ๊ฐ์ผํฐ/๋์๋ง"]
}
}
var numberOfRowInSections: Int {
return contents.count
}
var description: String {
switch self {
case .total:
return "์ ์ฒด ์ค์ "
case .personal:
return "๊ฐ์ธ ์ค์ "
case .etc:
return "๊ธฐํ"
}
}
}
final class SettingViewController: UITableViewController {
override func numberOfSections(in tableView: UITableView) -> Int {
return SettingType.allCases.count
}
override func tableView(_ tableView: UITableView, titleForHeaderInSection section: Int) -> String? {
return String(describing: SettingType.allCases[section])
}
override func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return SettingType.allCases[section].numberOfRowInSections
}
override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
guard let cell = tableView.dequeueReusableCell(withIdentifier: "settingCell") else { return UITableViewCell() }
cell.textLabel?.text = SettingType.allCases[indexPath.section].contents[indexPath.row]
return cell
}
}
๋ค๋น๊ฒ์ด์ ์ปจํธ๋กค๋ฌ ์ง์ ์์น
- ํญ ๋ฐ + ๋ค๋น๊ฒ์ด์
- ๋ค๋น๊ฒ์ด์ + ๊ฐ Child ๋ทฐ ์ปจํธ๋กค๋ฌ
- 1๋ฒ์ ๊ฒฝ์ฐ, ๊ฐ ๋ทฐ ์ปจํธ๋กค๋ฌ์ ํญ ๋ฐ ์์ดํ ์ ์ค์ ํ๊ธฐ๊ฐ ํธํ๋ค.
- 2๋ฒ์ ๊ฒฝ์ฐ, ๋ค๋น๊ฒ์ด์ ๋ฐ ๊ตฌํ์ด ํธํ๋ค. ๋ค๋น๊ฒ์ด์ ๋ฐ ํ์ดํ, ์์ดํ ์ ์ค์ ํ๊ธฐ๊ฐ ํธํ๋ค.
Extension
- ํ์ํ ์์๋ค๋ง ์ต์คํ ์ ์ผ๋ก ๋ง๋ค์.
- ํ ๊ตฐ๋ฐ์์๋ง ์ฌ์ฉํ๋ค๋ฉด ์ต์คํ ์ ์ผ๋ก ๋ง๋ค์ง ์๋ ๊ฒ์ด ์ข๋ค.
- UIViewController+Extension ์์ 100๊ฐ์ ํจ์๋ฅผ ์ถ๊ฐ๋ก ์ ์ธํด๋์๋ค๊ณ ๊ฐ์ ํด๋ณด์. UIViewController๋ฅผ ์์ํด์ค๊ฑฐ๋ ์ฌ์ฉํ๋ ค๊ณ ํ ๋ ๊ทธ ํจ์๋ค๊น์ง ๋ถ๋ฌ์ค๊ธฐ ๋๋ฌธ์ ๋ถํ์ํ ํธ์ถ์ด ์ผ์ด๋ ์ ์๊ณ ๋ฌด๊ฑฐ์์ง๋ค.
Store Property
- ์ ์ฅ ํ๋กํผํฐ๋ ํฌํจํ ์ ์๋ค.
- ์ ์ธํ๋ ์์ ์ ๋ฉ๋ชจ๋ฆฌ์ ์ฌ๋ผ๊ฐ๊ธฐ ๋๋ฌธ์ ํ์ฅ์ ํํ๋ก ์ฌ์ฉํ ์ ์๋ค.
- cf) ๋ฉ์๋๋ ํธ์ถํ๋ ์์ ์ ์ฌ์ฉ๋๊ธฐ ๋๋ฌธ์ ํ์ฅ์ ํ ์ ์๋ ๊ฒ์ด๋ค.
Issue
- TableView ViewController ์ฐ๊ฒฐ ์ด์ (Xcode ๋๊ณ ์ผ๊ธฐ, Clean Build Folder, ์ญ์ผ๋ก ์ฐ๊ฒฐํ๊ธฐ)
- Identifier ํด๋จผ ์๋ฌ (Cell Id๋ ์ ํํ ์ฐ์)
- numberOfRowInSection (๋ฉ์๋ ์ ํํ ์ฌ์ฉํ์)
์ปค์คํ ์ ์์ฑํ๊ธฐ
- ์ ํด๋์ค ํ์ผ ์์ฑ
- ์ ๊ณผ ํด๋์ค ์ฐ๊ฒฐ (์ ํํ ๋งค์นญ์์ผ์ฃผ์ด์ผ ํจ)
- ์ identifier ์ค์
- ์ ๊บผ๋ด๊ธฐ
์ ์ถ๊ฐํ๊ธฐ(๊ฐฑ์ ํ๊ธฐ)
ReloadData
๋ฐฐ์ด์ ๋ฐ์ดํฐ๋ฅผ ์ ์ถ๊ฐํด์ค๋ค๊ณ ํด๋, ํ ์ด๋ธ๋ทฐ์๋ ๋ณ๊ฒฝ ์ฌํญ์ด ๋ฐ์๋์ง ์๋๋ค. ๊ทธ๋ ๊ธฐ ๋๋ฌธ์ UI๋ฅผ ๋ค์ ๊ทธ๋ฆฌ๋ผ๊ณ TableView์ ์์ฒญํ ํ์๊ฐ ์๋ค. ๋ฐ์ดํฐ๊ฐ ๋ฌ๋ผ์ง๋ ์์ ์ ์ ์ ํ ์์ฒญ๋์ด์ผ ํ๋ค. ๋ค์๊ณผ ๊ฐ์ ๋ฉ์๋๋ฅผ ํธ์ถํด์ ํ ์ด๋ธ๋ทฐ๋ฅผ ๋ค์ ๊ทธ๋ฆฌ๋๋ก ํ๋ค.
tableView.reloadData()
reloadData()์์ ์๋ ๋ค์ ์์ ์ด ์คํ๋๋ค.
- numberOfItemsInSection ๋ฉ์๋ : cell์ ๊ฐ์ ๊ฒฐ์
- cellForItemAt ๋ฉ์๋ : ํ๋ฉด์ ๋ณด์ฌ์ง ๋งํผ์ ์ ์์ฑ
๋งค๋ฒ ์ ์ฒด๋ฅผ ๊ฐฑ์ ํด์ผ ํ ๊น?
Section, Row๋ง ๊ฐฑ์ ํ ์๋ ์๋ค. ์ ์ ํ ์ ํํด์ ์ฌ์ฉํ๋๋ก ํ์.
- reloadSections()
- reloadRows()
์์ ์ฝ๋
import UIKit
class BucketlistTableViewController: UITableViewController {
var list = ["๋ฒ์ฃ๋์", "ํ๊ฑด", "ํ ๋ฅด"]
@IBOutlet weak var userTextField: UITextField!
override func viewDidLoad() {
super.viewDidLoad()
self.tableView.rowHeight = 90
}
@IBAction func userTextFieldDidFinish(_ sender: UITextField) {
self.list.append(sender.text!)
self.tableView.reloadData()
}
}
// MARK: - Methods
extension BucketlistTableViewController {
override func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return self.list.count
}
override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: String(describing: BucketlistTableViewCell.self), for: indexPath) as! BucketlistTableViewCell
cell.bucketlistLabel.text = self.list[indexPath.row]
cell.bucketlistLabel.font = .boldSystemFont(ofSize: 18)
return cell
}
}
ํ ์ด๋ธ๋ทฐ ๊ด๋ จ ๋ฉ์๋ ๋ฐ ๊ธฐ๋ฅ
์คํฌ๋กค ์ ํค๋ณด๋ dismiss

Reload
self.tableView.reloadData()
self.tableView.reloadSections(IndexSet(0...0), with: .fade)
self.tableView.reloadRows(at: [IndexPath(row: 0, section: 0), IndexPath(row: 1, section: 0)], with: .fade)
Move & Swipe
override func tableView(_ tableView: UITableView, canMoveRowAt indexPath: IndexPath) -> Bool {
// ์
์ด๋
}
override func tableView(_ tableView: UITableView, trailingSwipeActionsConfigurationForRowAt indexPath: IndexPath) -> UISwipeActionsConfiguration? {
// ์ญ์
}
override func tableView(_ tableView: UITableView, leadingSwipeActionsConfigurationForRowAt indexPath: IndexPath) -> UISwipeActionsConfiguration? {
// ์ฆ๊ฒจ์ฐพ๊ธฐ ํ ๊ณ ์
}
Default Edit(+Delete)

// ํธ์ง ๊ฐ๋ฅํ ์ํ๋ก ๋ง๋ค ์ ์์
override func tableView(_ tableView: UITableView, canEditRowAt indexPath: IndexPath) -> Bool {
return true
}
override func tableView(_ tableView: UITableView, commit editingStyle: UITableViewCell.EditingStyle, forRowAt indexPath: IndexPath) {
if editingStyle == .delete {
// ๋ฐฐ์ด ์ญ์ ํ์ ํ
์ด๋ธ ๋ทฐ ๊ฐฑ์
list.remove(at: indexPath.row)
tableView.reloadSections(IndexSet(0...0), with: .automatic)
}
}
'๐ฑ SeSAC' ์นดํ ๊ณ ๋ฆฌ์ ๋ค๋ฅธ ๊ธ
[SeSAC] 220721 TIL (0) | 2022.07.21 |
---|---|
[SeSAC] 220720 TIL (0) | 2022.07.21 |
[SeSAC] 220718 TIL (0) | 2022.07.21 |
[SeSAC] 220715 TIL (0) | 2022.07.21 |
[SeSAC] 220714 TIL (0) | 2022.07.21 |