CCMore.swift 3.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. //
  2. // CCMore.swift
  3. // Nextcloud
  4. //
  5. // Created by Marino Faggiana on 03/04/17.
  6. // Copyright © 2017 TWS. All rights reserved.
  7. //
  8. // Author Marino Faggiana <m.faggiana@twsweb.it>
  9. //
  10. // This program is free software: you can redistribute it and/or modify
  11. // it under the terms of the GNU General Public License as published by
  12. // the Free Software Foundation, either version 3 of the License, or
  13. // (at your option) any later version.
  14. //
  15. // This program is distributed in the hope that it will be useful,
  16. // but WITHOUT ANY WARRANTY; without even the implied warranty of
  17. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  18. // GNU General Public License for more details.
  19. //
  20. // You should have received a copy of the GNU General Public License
  21. // along with this program. If not, see <http://www.gnu.org/licenses/>.
  22. //
  23. import UIKit
  24. class CCMore: UIViewController, UITableViewDelegate, UITableViewDataSource {
  25. @IBOutlet weak var tableView: UITableView!
  26. @IBOutlet weak var labelQuota: UILabel!
  27. @IBOutlet weak var progressQuota: UIProgressView!
  28. let section = ["Main", "Menu", "Settings"]
  29. let items = [["A", "B", "C"], ["A", "B", "C"], ["A", "B", "C", "D"]]
  30. let appDelegate = UIApplication.shared.delegate as! AppDelegate
  31. var externalSite: [TableExternalSites]?
  32. override func viewDidLoad() {
  33. super.viewDidLoad()
  34. // This view controller itself will provide the delegate methods and row data for the table view.
  35. tableView.delegate = self
  36. tableView.dataSource = self
  37. }
  38. override func viewDidAppear(_ animated: Bool) {
  39. // Get External Site
  40. externalSite = CCCoreData.getAllTableExternalSites(with: NSPredicate(format: "(account == '\(appDelegate.activeAccount!))")) as? [TableExternalSites]
  41. tableView.reloadData()
  42. }
  43. func numberOfSections(in tableView: UITableView) -> Int {
  44. return self.section.count
  45. }
  46. func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
  47. return self.items[section].count
  48. }
  49. // create a cell for each table view row
  50. func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
  51. let cell = tableView.dequeueReusableCell(withIdentifier: "Cell", for: indexPath) as! CCCellMore
  52. // cell.textLabel?.text = "Section \(indexPath.section) Row \(indexPath.row)"
  53. //let fruitName = fruits[indexPath.row]
  54. //cell.textLabel?.text = fruitName
  55. //cell.detailTextLabel?.text = "Delicious!"
  56. //cell.imageView?.image = UIImage(named: fruitName)
  57. return cell
  58. }
  59. // method to run when table view cell is tapped
  60. func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
  61. print("You tapped cell number \(indexPath.row).")
  62. }
  63. }
  64. class CCCellMore: UITableViewCell {
  65. @IBOutlet weak var labelText: UILabel!
  66. @IBOutlet weak var imageIcon: UIImageView!
  67. }