import UIKit
class ViewController: UIViewController, UITableViewDelegate, UITableViewDataSource {
var tableView: UITableView!
override func viewDidLoad() {
super.viewDidLoad()
// TableView 생성 및 Delegate, DataSource 설정
tableView = UITableView(frame: view.bounds, style: .plain)
tableView.delegate = self
tableView.dataSource = self
// TableView Cell 등록
tableView.register(UITableViewCell.self, forCellReuseIdentifier: "cell")
// TableView를 View에 추가
view.addSubview(tableView)
}
// TableView 데이터 소스
func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return 10 // 데이터 수 설정
}
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: "cell", for: indexPath)
cell.textLabel?.text = "Row \(indexPath.row + 1)"
return cell
}
// TableView Delegate
func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
print("Row \(indexPath.row + 1) selected")
}
}
'Swift > UIKit' 카테고리의 다른 글
[RxSwift]왜 비동기 처리가 안되는거지? viewDidLoad에서 onNext가 실행이 안될때... (부제: viewdidload에 disposableBag을 선언하면 생기는 일) (1) | 2023.03.23 |
---|---|
[UIKit] RxSwift로 tableview만들기 (0) | 2023.03.22 |
[Swift] Icon 색과 크기 변경하는 방법 (0) | 2023.03.21 |
[Swift] RXSwift로 UPDown 만들기 (0) | 2023.03.21 |
[UIkit] 공공데이터 활용하기, serviceKey, Application_ERROR 해결 (0) | 2023.03.14 |