123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- import UIKit
- import Sheeeeeeeeet
- extension ViewController: UITableViewDataSource {
-
- func numberOfSections(in tableView: UITableView) -> Int {
- return 1
- }
-
- func option(at indexPath: IndexPath) -> TableViewOption {
- return tableViewOptions[indexPath.row]
- }
-
- func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
- return tableViewOptions.count
- }
-
- func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
- let option = self.option(at: indexPath)
- let cell = tableView.dequeueReusableCell(withIdentifier: "Cell", for: indexPath)
- cell.tintColor = .darkGray
- cell.imageView?.image = option.image
- cell.textLabel?.text = option.title
- cell.detailTextLabel?.text = option.description
- return cell
- }
- }
- extension ViewController: UITableViewDelegate {
-
- func tableView(_ tableView: UITableView, heightForRowAt indexPath: IndexPath) -> CGFloat {
- return 70
- }
-
- func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
- tableView.deselectRow(at: indexPath, animated: true)
- guard let cell = tableView.cellForRow(at: indexPath) else { return }
- guard let sheet = actionSheet(at: indexPath) else { return }
- sheet.presenter.events.didDismissWithBackgroundTap = { print("Background tap!") }
- sheet.present(in: self, from: cell.textLabel)
- }
- }
|