CommonViewToFill.swift 2.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. //
  2. // CommonViewToFill.swift
  3. // 给view绑定双击全屏事件 再次双击恢复 直接在init初始化即可
  4. //
  5. // Created by Virgil on 2018/8/23.
  6. // Copyright © 2018年 Virgil. All rights reserved.
  7. //
  8. import UIKit
  9. class CommonViewToFill: NSObject {
  10. ///控制器View
  11. private var _vcView: UIView!
  12. ///当前View
  13. private var _currentView: UIView!
  14. ///父层View
  15. private var _parentView: UIView!
  16. ///默认是否显示导航栏
  17. private var _defaultIsShowNav = true
  18. private var isFill = false
  19. private var vcViewFrame: CGRect!
  20. private var currentViewFrame: CGRect!
  21. /// vcView:self.view页面 currentView:要全屏的View defaultIsShowNav:默认是否显示导航栏 注:背景透明时全屏底下view会露出
  22. init(vcView: UIView, currentView: UIView, defaultIsShowNav: Bool) {
  23. super.init()
  24. _vcView = vcView
  25. _currentView = currentView
  26. _defaultIsShowNav = defaultIsShowNav
  27. _parentView = _currentView.superview!
  28. let videoViewGesture = UITapGestureRecognizer(target: self, action: #selector(videoClick))
  29. videoViewGesture.numberOfTapsRequired = 2
  30. _currentView.addGestureRecognizer(videoViewGesture)
  31. }
  32. @objc func videoClick(sender: UITapGestureRecognizer) {
  33. setIsFill(isFill: isFill)
  34. isFill = !isFill
  35. }
  36. func setIsFill(isFill: Bool) {
  37. if isFill {
  38. UIApplication.shared.setStatusBarHidden(false, with: .none)
  39. _currentView.removeFromSuperview()
  40. _parentView.addSubview(_currentView)
  41. UIView.animate(withDuration: 0.4, animations: {
  42. appDelegate.setNavigationBarHidden(isHidden: !self._defaultIsShowNav)
  43. self._vcView.transform = CGAffineTransform.inverted(CGAffineTransform(rotationAngle: CGFloat(0)))() //
  44. self._vcView.frame = self.vcViewFrame
  45. self._currentView.frame = self.currentViewFrame
  46. }) { (_) in
  47. }
  48. } else {
  49. self.vcViewFrame = self._vcView.frame
  50. self.currentViewFrame = self._currentView.frame
  51. UIApplication.shared.setStatusBarHidden(true, with: .none)
  52. _currentView.removeFromSuperview()
  53. _vcView.addSubview(_currentView)
  54. _vcView.bringSubviewToFront(_currentView)
  55. UIView.animate(withDuration: 0.4, animations: {
  56. appDelegate.setNavigationBarHidden(isHidden: true)
  57. self._vcView.transform = CGAffineTransform(rotationAngle: CGFloat(Double.pi/2))
  58. self._vcView.frame = CGRect(x: 0, y: 0, width: ScreenHeight, height: ScreenWidth)
  59. self._currentView.frame = CGRect(x: 0, y: 0, width: ScreenHeight, height: ScreenWidth)
  60. }) { (_) in
  61. }
  62. }
  63. }
  64. }