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 ответов

8 просмотров

ну такое себе

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

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

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

Здравствуйте, вопрос по структурам данных. Были у вас случаи, когда пришлось писать деревья или двунаправленные списки?
/ /
48
Всем привет! Скажите, никто не пытался уменьшить размер процесса ssl, которые ассоциируется с открытым соединением (не помню точное название этого процесса, но там была какая-...
Алексей
20
а проверьте, собирается ли у кого сейчас транк лазаря через делюкс? у меня вот: fpcupdeluxe: info: Lazarus Native Installer (BuildModuleCustom: UserIDE): LazBuild: building Us...
Iluha Companets
20
This is a big issue. Just by being a citizen of a country, you are denied to contribute to Open Source software: https://youtu.be/L5Ec5jrpLVk?si=1iIuHnMPbCB4anV-
Sharuzzaman Ahmat Raslan
72
Мне тут приспичило встроить в программу форматировние текста SQL, расставить переносы строк и отступы так, чтобы лучше читалось. Я что-то свое изобразил, оно после ключевых сл...
Sergey Bodrov
11
добрый день. возможно ли изменить цвет окон лазаруса? Как?
Budemposmotret
35
Господа, а кто-нибудь сталкивался с размещением на TTabControl/TTabSheet множества контролов (> 100) с последующими External: Access violation? Вот буквально на ровном месте. ...
Dmitry
29
А какие существуют способы обработки ошибок выделения памяти в ядре? Т.е., допустим, есть функция, которая возвращает адрес свободной страницы в физической памяти и диапазон в...
disba1ancer
51
Добрый день. Опять снова хочу обратиться к вам за помощью. После создания проэкта stack new, lazy.nvim + nvim-lspconfig/haskell-tools + hlint, ormolu из mason + hls из ghcup ...
Nannk
8
Does anyone have some zeroday's left?
Wito!d ♥️🩷
44
Карта сайта