1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- //
- // CCMore.swift
- // Nextcloud
- //
- // Created by Marino Faggiana on 03/04/17.
- // Copyright © 2017 TWS. All rights reserved.
- //
- // Author Marino Faggiana <m.faggiana@twsweb.it>
- //
- // This program is free software: you can redistribute it and/or modify
- // it under the terms of the GNU General Public License as published by
- // the Free Software Foundation, either version 3 of the License, or
- // (at your option) any later version.
- //
- // This program is distributed in the hope that it will be useful,
- // but WITHOUT ANY WARRANTY; without even the implied warranty of
- // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- // GNU General Public License for more details.
- //
- // You should have received a copy of the GNU General Public License
- // along with this program. If not, see <http://www.gnu.org/licenses/>.
- //
- import UIKit
- class CCMore: UIViewController, UITableViewDelegate, UITableViewDataSource {
- @IBOutlet weak var tableView: UITableView!
- @IBOutlet weak var labelQuota: UILabel!
- @IBOutlet weak var progressQuota: UIProgressView!
- let section = ["Main", "Menu", "Settings"]
- let items = [["A", "B", "C"], ["A", "B", "C"], ["A", "B", "C", "D"]]
-
- let appDelegate = UIApplication.shared.delegate as! AppDelegate
-
- var externalSite: [TableExternalSites]?
-
- override func viewDidLoad() {
-
- super.viewDidLoad()
-
- // This view controller itself will provide the delegate methods and row data for the table view.
- tableView.delegate = self
- tableView.dataSource = self
- }
-
- override func viewDidAppear(_ animated: Bool) {
-
- // Get External Site
- externalSite = CCCoreData.getAllTableExternalSites(with: NSPredicate(format: "(account == '\(appDelegate.activeAccount!))")) as? [TableExternalSites]
-
- tableView.reloadData()
- }
-
- func numberOfSections(in tableView: UITableView) -> Int {
- return self.section.count
- }
-
- func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
- return self.items[section].count
- }
-
- // create a cell for each table view row
- func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
-
- let cell = tableView.dequeueReusableCell(withIdentifier: "Cell", for: indexPath) as! CCCellMore
-
- // cell.textLabel?.text = "Section \(indexPath.section) Row \(indexPath.row)"
- //let fruitName = fruits[indexPath.row]
- //cell.textLabel?.text = fruitName
- //cell.detailTextLabel?.text = "Delicious!"
- //cell.imageView?.image = UIImage(named: fruitName)
-
- return cell
- }
- // method to run when table view cell is tapped
- func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
- print("You tapped cell number \(indexPath.row).")
- }
- }
- class CCCellMore: UITableViewCell {
-
- @IBOutlet weak var labelText: UILabel!
- @IBOutlet weak var imageIcon: UIImageView!
- }
|