MainTabBarViewController.swift 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. //
  2. // MainTabBarViewController.swift
  3. // dzwww
  4. //
  5. // Created by Virgil on 2017/11/1.
  6. // Copyright © 2017年 Virgil. All rights reserved.
  7. //
  8. import UIKit
  9. class MainTabBarViewController: UITabBarController {
  10. var btnCreate: UIButton!
  11. override func viewDidLoad() {
  12. super.viewDidLoad()
  13. self.view.backgroundColor = UIColor.white
  14. }
  15. var arrBtnMenus = [UIButton]()
  16. ///跳动的按钮,不需要则不调用
  17. func initMenuImageAnimation() {
  18. self.tabBar.clipsToBounds = false
  19. let viewMain = UIView(frame: CGRect(x: 0, y: 1, width: self.tabBar.frame.width, height: self.tabBar.frame.height - 18))
  20. self.tabBar.addSubview(viewMain)
  21. viewMain.backgroundColor = UIColor.white
  22. viewMain.clipsToBounds = false
  23. let width = viewMain.frame.width / 5
  24. for i in 1 ..< 6 {
  25. let btn = UIButton(frame: CGRect(x: width * CGFloat(i - 1), y: 0, width: width, height: viewMain.frame.height))
  26. btn.setImage(UIImage(named: appDelegate.arrIcon[i-1]), for: .normal)
  27. btn.setImage(UIImage(named: "\(appDelegate.arrIcon[i-1])_s"), for: .selected)
  28. btn.contentVerticalAlignment = .bottom
  29. btn.tag = i
  30. btn.addTarget(self, action: #selector(btnChangeItem), for: .touchUpInside)
  31. viewMain.addSubview(btn)
  32. if i == 1 {
  33. oldSelectedBtn = btn
  34. oldSelectedBtn.isSelected = true
  35. }
  36. arrBtnMenus.append(btn)
  37. }
  38. }
  39. ///初始化中间的大按钮
  40. func initMenuBigCenterButton() {
  41. btnCreate = UIButton(frame: CGRect(x: (ScreenWidth - 52)/2, y: -3, width: 52, height: 52))
  42. btnCreate.backgroundColor = UIColor.clear
  43. btnCreate.setBackgroundImage(UIImage(named: "btncreate"), for: .normal)
  44. self.tabBar.addSubview(btnCreate)
  45. btnCreate.isHidden = false
  46. btnCreate.addTarget(self, action: #selector(btnCreateClick), for: .touchUpInside)
  47. }
  48. @objc func btnCreateClick() {
  49. }
  50. var oldSelectedBtn: UIButton!
  51. @objc func btnChangeItem(btn: UIButton) {
  52. if oldSelectedBtn != nil {
  53. oldSelectedBtn.isSelected = false
  54. }
  55. self.selectedIndex = btn.tag - 1
  56. btn.isSelected = true
  57. oldSelectedBtn = btn
  58. CommonAnimation.popJumpAnimationView(view: btn, repeatCount: 1, duration: 1, values: [0, -20, 0, -8, 0, -4, 0], keyTimes: [0, 0.2, 0.4, 0.6, 0.8, 0.9, 1])
  59. // CommonAnimation.popRotationAnimation(view: btn)
  60. }
  61. override func tabBar(_ tabBar: UITabBar, didSelect item: UITabBarItem) {
  62. let index = tabBar.items?.index(of: item)!
  63. if arrBtnMenus.count > index! {
  64. btnChangeItem(btn: arrBtnMenus[index!])
  65. }
  66. }
  67. override func didReceiveMemoryWarning() {
  68. super.didReceiveMemoryWarning()
  69. // Dispose of any resources that can be recreated.
  70. }
  71. /*
  72. // MARK: - Navigation
  73. // In a storyboard-based application, you will often want to do a little preparation before navigation
  74. override func prepare(for segue: UIStoryboardSegue, sender: Any?) {
  75. // Get the new view controller using segue.destinationViewController.
  76. // Pass the selected object to the new view controller.
  77. }
  78. */
  79. }