CCMainTabBarController.swift 3.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. //
  2. // CCMainTabBarController.swift
  3. // Crypto Cloud Technology Nextcloud
  4. //
  5. // Created by Marino Faggiana on 30/03/17.
  6. // Copyright © 2017 TWS. All rights reserved.
  7. //
  8. // Author Marino Faggiana <m.faggiana@twsweb.it>
  9. //
  10. // This program is free software: you can redistribute it and/or modify
  11. // it under the terms of the GNU General Public License as published by
  12. // the Free Software Foundation, either version 3 of the License, or
  13. // (at your option) any later version.
  14. //
  15. // This program is distributed in the hope that it will be useful,
  16. // but WITHOUT ANY WARRANTY; without even the implied warranty of
  17. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  18. // GNU General Public License for more details.
  19. //
  20. // You should have received a copy of the GNU General Public License
  21. // along with this program. If not, see <http://www.gnu.org/licenses/>.
  22. //
  23. import Foundation
  24. class CCMainTabBarController : UITabBarController, UITabBarControllerDelegate {
  25. override func viewDidLoad() {
  26. super.viewDidLoad()
  27. delegate = self
  28. }
  29. //Delegate methods
  30. func tabBarController(_ tabBarController: UITabBarController, shouldSelect viewController: UIViewController) -> Bool {
  31. let tabViewControllers = tabBarController.viewControllers!
  32. let fromView = tabBarController.selectedViewController!.view
  33. let toView = viewController.view
  34. if (fromView == toView) {
  35. if let vc = viewController as? UINavigationController {
  36. vc.popToRootViewController(animated: true);
  37. }
  38. return false
  39. }
  40. let fromIndex = tabViewControllers.index(of: tabBarController.selectedViewController!)
  41. let toIndex = tabViewControllers.index(of: viewController)
  42. let offScreenRight = CGAffineTransform(translationX: (toView?.frame.width)!, y: 0)
  43. let offScreenLeft = CGAffineTransform(translationX: -(toView?.frame.width)!, y: 0)
  44. // start the toView to the right of the screen
  45. if (toIndex! < fromIndex!) {
  46. toView?.transform = offScreenLeft
  47. fromView?.transform = offScreenRight
  48. } else {
  49. toView?.transform = offScreenRight
  50. fromView?.transform = offScreenLeft
  51. }
  52. fromView?.tag = 124
  53. toView?.addSubview(fromView!)
  54. self.view.isUserInteractionEnabled = false
  55. UIView.animate(withDuration: 0.5, delay: 0.0, usingSpringWithDamping: 1, initialSpringVelocity: 0, options: UIViewAnimationOptions.curveEaseOut, animations: {
  56. toView?.transform = CGAffineTransform.identity
  57. }, completion: { finished in
  58. let subViews = toView?.subviews
  59. for subview in subViews!{
  60. if (subview.tag == 124) {
  61. subview.removeFromSuperview()
  62. }
  63. }
  64. tabBarController.selectedIndex = toIndex!
  65. self.view.isUserInteractionEnabled = true
  66. })
  67. return true
  68. }
  69. }