CloudFileShareViewController.swift 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. //
  2. // CloudFileShareViewController.swift
  3. // O2Platform
  4. //
  5. // Created by FancyLou on 2019/10/8.
  6. // Copyright © 2019 zoneland. All rights reserved.
  7. //
  8. import UIKit
  9. class CloudFileShareViewController: UITableViewController {
  10. override func viewDidLoad() {
  11. super.viewDidLoad()
  12. // Uncomment the following line to preserve selection between presentations
  13. // self.clearsSelectionOnViewWillAppear = false
  14. // Uncomment the following line to display an Edit button in the navigation bar for this view controller.
  15. // self.navigationItem.rightBarButtonItem = self.editButtonItem
  16. }
  17. // MARK: - Table view data source
  18. override func numberOfSections(in tableView: UITableView) -> Int {
  19. // #warning Incomplete implementation, return the number of sections
  20. return 0
  21. }
  22. override func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
  23. // #warning Incomplete implementation, return the number of rows
  24. return 0
  25. }
  26. override func tableView(_ tableView: UITableView, viewForFooterInSection section: Int) -> UIView? {
  27. return UIView(frame: CGRect.zero)
  28. }
  29. /*
  30. override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
  31. let cell = tableView.dequeueReusableCell(withIdentifier: "reuseIdentifier", for: indexPath)
  32. // Configure the cell...
  33. return cell
  34. }
  35. */
  36. /*
  37. // Override to support conditional editing of the table view.
  38. override func tableView(_ tableView: UITableView, canEditRowAt indexPath: IndexPath) -> Bool {
  39. // Return false if you do not want the specified item to be editable.
  40. return true
  41. }
  42. */
  43. /*
  44. // Override to support editing the table view.
  45. override func tableView(_ tableView: UITableView, commit editingStyle: UITableViewCell.EditingStyle, forRowAt indexPath: IndexPath) {
  46. if editingStyle == .delete {
  47. // Delete the row from the data source
  48. tableView.deleteRows(at: [indexPath], with: .fade)
  49. } else if editingStyle == .insert {
  50. // Create a new instance of the appropriate class, insert it into the array, and add a new row to the table view
  51. }
  52. }
  53. */
  54. /*
  55. // Override to support rearranging the table view.
  56. override func tableView(_ tableView: UITableView, moveRowAt fromIndexPath: IndexPath, to: IndexPath) {
  57. }
  58. */
  59. /*
  60. // Override to support conditional rearranging of the table view.
  61. override func tableView(_ tableView: UITableView, canMoveRowAt indexPath: IndexPath) -> Bool {
  62. // Return false if you do not want the item to be re-orderable.
  63. return true
  64. }
  65. */
  66. /*
  67. // MARK: - Navigation
  68. // In a storyboard-based application, you will often want to do a little preparation before navigation
  69. override func prepare(for segue: UIStoryboardSegue, sender: Any?) {
  70. // Get the new view controller using segue.destination.
  71. // Pass the selected object to the new view controller.
  72. }
  73. */
  74. }