You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

30 lines
735 B

6 years ago
  1. //
  2. // TabBarViewController.swift
  3. // GMERemittance
  4. //
  5. // Created by FMI-12 on 2/8/18.
  6. // Copyright © 2018 Gobal Money Express Co. Ltd. All rights reserved.
  7. //
  8. import UIKit
  9. class TabBarViewController: UITabBarController, UITabBarControllerDelegate {
  10. override func viewDidLoad() {
  11. super.viewDidLoad()
  12. self.delegate = self
  13. }
  14. /*
  15. // MARK: - Navigation
  16. // In a storyboard-based application, you will often want to do a little preparation before navigation
  17. override func prepare(for segue: UIStoryboardSegue, sender: Any?) {
  18. // Get the new view controller using segue.destinationViewController.
  19. // Pass the selected object to the new view controller.
  20. }
  21. */
  22. }