HomeViewController.swift
1.59 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
//
// HomeViewController.swift
// InterQR-Internship
//
// Created by Дмитрий Тимофеев on 07.06.2022.
//
import UIKit
class HomeViewController: UIViewController {
var mainView = HomeView()
override func loadView() {
view = mainView
}
override func viewDidLoad() {
initViewController()
}
private func initViewController() {
mainView.tableView.delegate = self
mainView.tableView.dataSource = self
mainView.tableView.register(HomeTableViewCell.self, forCellReuseIdentifier: HomeTableViewCell.id)
mainView.settingsButton.addTarget(self, action: #selector(didShowSettingsVC), for: .touchUpInside)
}
}
extension HomeViewController {
@objc private func didShowSettingsVC() {
let vc = SettingsViewController()
navigationController?.pushViewController(vc, animated: true)
}
}
extension HomeViewController: UITableViewDelegate, UITableViewDataSource {
func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
5
}
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
guard let cell = tableView.dequeueReusableCell(withIdentifier: HomeTableViewCell.id, for: indexPath) as? HomeTableViewCell else { return UITableViewCell() }
return cell
}
func tableView(_ tableView: UITableView, heightForRowAt indexPath: IndexPath) -> CGFloat {
120
}
func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
print("✅")
}
}