CCMore.swift 3.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  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 imageLogo: UIImageView!
  26. @IBOutlet weak var imageUser: UIImageView!
  27. @IBOutlet weak var tableView: UITableView!
  28. @IBOutlet weak var labelQuota: UILabel!
  29. @IBOutlet weak var progressQuota: UIProgressView!
  30. let section = ["Main", "Menu", "Settings"]
  31. let items = [["A", "B", "C"], ["A", "B", "C"], ["A", "B", "C", "D"]]
  32. let appDelegate = UIApplication.shared.delegate as! AppDelegate
  33. var externalSite: [TableExternalSites]?
  34. override func viewDidLoad() {
  35. super.viewDidLoad()
  36. // This view controller itself will provide the delegate methods and row data for the table view.
  37. self.tableView.delegate = self
  38. self.tableView.dataSource = self
  39. CCAspect.aspectNavigationControllerBar(self.navigationController?.navigationBar, encrypted: false, online: appDelegate.reachability.isReachable(), hidden: true)
  40. CCAspect.aspectTabBar(self.tabBarController?.tabBar, hidden: false)
  41. }
  42. override func viewDidAppear(_ animated: Bool) {
  43. // Get External Site
  44. //externalSite = CCCoreData.getAllTableExternalSites(with: NSPredicate(format: "(account == '\(appDelegate.activeAccount!))")) as? [TableExternalSites]
  45. CCAspect.aspectNavigationControllerBar(self.navigationController?.navigationBar, encrypted: false, online: appDelegate.reachability.isReachable(), hidden: true)
  46. CCAspect.aspectTabBar(self.tabBarController?.tabBar, hidden: false)
  47. tableView.reloadData()
  48. }
  49. func numberOfSections(in tableView: UITableView) -> Int {
  50. return self.section.count
  51. }
  52. func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
  53. return self.items[section].count
  54. }
  55. // create a cell for each table view row
  56. func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
  57. let cell = tableView.dequeueReusableCell(withIdentifier: "Cell", for: indexPath) as! CCCellMore
  58. // cell.textLabel?.text = "Section \(indexPath.section) Row \(indexPath.row)"
  59. //let fruitName = fruits[indexPath.row]
  60. //cell.textLabel?.text = fruitName
  61. //cell.detailTextLabel?.text = "Delicious!"
  62. //cell.imageView?.image = UIImage(named: fruitName)
  63. return cell
  64. }
  65. // method to run when table view cell is tapped
  66. func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
  67. print("You tapped cell number \(indexPath.row).")
  68. }
  69. }
  70. class CCCellMore: UITableViewCell {
  71. @IBOutlet weak var labelText: UILabel!
  72. @IBOutlet weak var imageIcon: UIImageView!
  73. }