Add simple table view controller
Seto Elkahfi committed
Apr 10, 2017 at 13:22 UTC
e3e147076be11d353b9b6f8bf61c373b2979d26c
1 file changed
+35
Example/JomloTableView/View Controllers/SimpleTableViewController.swift
new
+35
@@ -0,0 +1,35 @@
1
+//
2
+// SimpleTableViewController.swift
3
+// JomloTableView
4
+//
5
+// Created by SDMobile on 4/10/17.
6
+// Copyright © 2017 CocoaPods. All rights reserved.
7
+//
8
+
9
+import UIKit
10
+
11
+class SimpleTableViewController: UIViewController {
12
+
13
+ override func viewDidLoad() {
14
+ super.viewDidLoad()
15
+
16
+ // Do any additional setup after loading the view.
17
+ }
18
+
19
+ override func didReceiveMemoryWarning() {
20
+ super.didReceiveMemoryWarning()
21
+ // Dispose of any resources that can be recreated.
22
+ }
23
+
24
+
25
+ /*
26
+ // MARK: - Navigation
27
+
28
+ // In a storyboard-based application, you will often want to do a little preparation before navigation
29
+ override func prepare(for segue: UIStoryboardSegue, sender: Any?) {
30
+ // Get the new view controller using segue.destinationViewController.
31
+ // Pass the selected object to the new view controller.
32
+ }
33
+ */
34
+
35
+}