172 похожих чатов

Import UIKit class NotificationsSettingsViewController: UIViewController, UITableViewDelegate, UITableViewDataSource {

private var tableView: UITableView!

var sections = [
[localizedString(.settings_notifications_beforeOneHourStart), localizedString(.settings_notifications_startFasting)],
[localizedString(.settings_notifications_inMiddle)],
[localizedString(.settings_notifications_beforeOneHourFinish), localizedString(.settings_notifications_finishFasting)]
]
override func viewDidLoad() {
super.viewDidLoad()
//self.view.backgroundColor = .white;

self.navigationItem.title = "Уведомления";

tableView = UITableView(frame: .zero, style: .grouped)
tableView.separatorStyle = .none;
tableView.sectionIndexBackgroundColor = .blue

tableView.backgroundColor = .white;
tableView.dataSource = self
tableView.delegate = self
self.tableView.register(UITableViewCell.self, forCellReuseIdentifier: "cell")

self.view.addSubview(tableView)

tableView.translatesAutoresizingMaskIntoConstraints = false;
NSLayoutConstraint.activate([
tableView.leftAnchor.constraint(equalTo: view.leftAnchor),
tableView.topAnchor.constraint(equalTo: view.topAnchor),
tableView.rightAnchor.constraint(equalTo: view.rightAnchor),
tableView.bottomAnchor.constraint(equalTo: view.bottomAnchor)
])
}

// MARK: - Table view data source

func numberOfSections(in tableView: UITableView) -> Int {
// #warning Incomplete implementation, return the number of sections
return sections.count
}

func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return sections[section].count
}

func tableView(_ tableView: UITableView, heightForHeaderInSection section: Int) -> CGFloat {
print("heightForHeaderInSection")
return 30
}
func tableView(_ tableView: UITableView, heightForFooterInSection section: Int) -> CGFloat {
print("heightForFooterInSection")
return 30
}

func tableView(_ tableView: UITableView, viewForFooterInSection section: Int) -> UIView? {
let v = UIView(frame: CGRect(x: 15, y:0, width: tableView.frame.width, height: 1))
///v.backgroundColor = .lightGray
return v
}

func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: "cell", for: indexPath)
cell.textLabel?.text = sections[indexPath.section][indexPath.row]
cell.textLabel?.font = UIFont.systemFont(ofSize: 17)



let switchView = UISwitch(frame: .zero)
switchView.setOn(false, animated: true)
switchView.tag = indexPath.row
switchView.addTarget(self, action: #selector(self.switchDidChange(_:)), for: .valueChanged)

cell.accessoryView = switchView;


return cell
}

@objc func switchDidChange(_ sender: UISwitch){
print("sender is \(sender.tag)")
}

}

2 ответов

9 просмотров

ну такое себе

Зачем эта простыня тут?

Похожие вопросы

Обсуждают сегодня

30500 за редактор? )
Владимир
47
а через ESC-код ?
Alexey Kulakov
29
Чёт не понял, я ж правильной функцией воспользовался чтобы вывести отладочную информацию? но что-то она не ловится
notme
18
Добрый день! Скажите пожалуйста, а какие программы вы бы рекомендовали написать для того, чтобы научиться управлять памятью? Можно написать динамический массив, можно связный ...
Филипп
7
У меня есть функция где происходит это: write_bit(buffer, 1); write_bit(buffer, 0); write_bit(buffer, 1); write_bit(buffer, 1); write_bit(buffer, 1); w...
~
14
Недавно Google Project Zero нашёл багу в SQLite с помощью LLM, о чём достаточно было шумно в определённых интернетах, которые сопровождались рассказами, что скоро всех "ибешни...
Alex Sherbakov
5
Ребят в СИ можно реализовать ООП?
Николай
33
Как передать управляющий символ в открытую через CreateProcess консоль? Собсна, есть процедура: procedure TRedirectThread.WriteData(Data: OEMString); var Written: Cardinal;...
Serjone
6
https://github.com/erlang/otp/blob/OTP-27.1/lib/kernel/src/logger_h_common.erl#L174 https://github.com/erlang/otp/blob/OTP-27.1/lib/kernel/src/logger_olp.erl#L76 15 лет назад...
Maksim Lapshin
20
Всем привет! Имеется функция: function IsValidChar(ch: UTF8Char): Boolean; var i: Integer; ValidChars: AnsiString; begin ValidChars := 'abcdefghijklmnopqrstuvwxyzABCDE...
Евгений
44
Карта сайта