SideMenuTableViewController.swift 2.9 KB

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