12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- import Foundation
- class NCActivity: UIViewController, UITableViewDataSource, UITableViewDelegate, DZNEmptyDataSetSource, DZNEmptyDataSetDelegate {
-
- @IBOutlet fileprivate weak var tableView: UITableView!
- private let appDelegate = UIApplication.shared.delegate as! AppDelegate
- override func viewDidLoad() {
- super.viewDidLoad()
-
-
- self.tableView.emptyDataSetDelegate = self;
- self.tableView.emptyDataSetSource = self;
- }
-
- override func viewWillAppear(_ animated: Bool) {
- super.viewWillAppear(animated)
-
-
- appDelegate.aspectNavigationControllerBar(self.navigationController?.navigationBar, online: appDelegate.reachability.isReachable(), hidden: false)
- appDelegate.aspectTabBar(self.tabBarController?.tabBar, hidden: false)
-
-
-
- }
-
- func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
- return 0
- }
-
-
- func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
-
- let cell = tableView.dequeueReusableCell(withIdentifier: "listCell", for: indexPath) as! UITableViewCell
- return cell
- }
-
-
- }
|