Как я могу закрыть свои DimmingView и SlideMenu одновременно? - PullRequest
0 голосов
/ 14 июня 2019

Я создал слайд-меню с затемнением.Когда пользователь нажимает за боковое меню, я хочу, чтобы слайд-меню и вид затемнения отклонялись.Как я могу достичь этого точно?Я уже создал TapRecognizer в каждом классе, и он работает .. но только для каждого класса сразу. Здесь - мой MenuController, а ниже - мой SlideTransition с моим затемнением.Прямо сейчас он удаляет затемнение, когда я щелкаю за пределами слайд-меню.Но это также должно удалить слайд-меню.

class SlideinTransition: NSObject, UIViewControllerAnimatedTransitioning {

let menuViewController = MenuViewController()

var isPresenting = true
let dimmingView = UIView()

func transitionDuration(using transitionContext: UIViewControllerContextTransitioning?) -> TimeInterval {
    return 0.6
}

@objc func touchWasDetected() {
    print("Touch detected")
    dimmingView.removeFromSuperview()
    menuViewController.dismiss(animated: true, completion: nil)
}

func animateTransition(using transitionContext: UIViewControllerContextTransitioning) {

    guard let toViewController = transitionContext.viewController(forKey: .to),
    let fromViewController = transitionContext.viewController(forKey: .from) else { return }
    let containerView = transitionContext.containerView

    let finalWidth = toViewController.view.bounds.width * 0.3
    let finalHeight = toViewController.view.bounds.height

    if isPresenting{

        let tapGesture = UITapGestureRecognizer(target: self, action: #selector(touchWasDetected))
        dimmingView.addGestureRecognizer(tapGesture)

        //adds the dimming view
        dimmingView.backgroundColor = .black
        dimmingView.alpha = 0.0
        containerView.addSubview(dimmingView)
        dimmingView.frame = containerView.bounds
        //adds the menu view controller to our container
        containerView.addSubview(toViewController.view)

        //init frame off the screen
        toViewController.view.frame = CGRect(x: -finalWidth, y: 0, width: finalWidth, height: finalHeight)
    }

    let transform = {
        self.dimmingView.alpha = 0.5
        toViewController.view.transform = CGAffineTransform(translationX: finalWidth, y: 0)
    }

    let identity = {
        self.dimmingView.alpha = 0.0
        fromViewController.view.transform = .identity
    }

    //animates the transition
    let duration = transitionDuration(using: transitionContext)
    let isCancelled = transitionContext.transitionWasCancelled
    UIView.animate(withDuration: duration, animations: {
        self.isPresenting ? transform() : identity()
    }) { (_) in
        transitionContext.completeTransition(!isCancelled)
    }
}

}

Боковое меню и вид затемнения должны быть удалены, когда пользователь нажимает за пределами бокового меню / в режиме затемнения

1 Ответ

1 голос
/ 14 июня 2019

Думаю, вы используете SlideinTransition для подарка и увольнения. Таким образом, вы должны перейти dimmingView.removeFromSuperview() с touchWasDetected() на UIView.animate завершение.

UPD: Я запустил это на примере проекта, отлично работает.

начальный контроллер:

class ViewController: UIViewController, UIViewControllerTransitioningDelegate {
    let transition = SlideinTransition()

    override func prepare(for segue: UIStoryboardSegue, sender: Any?) {
        segue.destination.transitioningDelegate = self
    }

    func animationController(forPresented presented: UIViewController, presenting: UIViewController, source: UIViewController) -> UIViewControllerAnimatedTransitioning? {
        transition.isPresenting = true
        return transition
    }

    func animationController(forDismissed dismissed: UIViewController) -> UIViewControllerAnimatedTransitioning? {
        transition.isPresenting = false
        return transition
    }
}

измененный переходный период:

extension UIViewController {
    @IBAction func dismissControllerAnimated() {
        dismiss(animated: true)
    }
}

class SlideinTransition: NSObject, UIViewControllerAnimatedTransitioning {
    var isPresenting = true
    let dimmingView = UIView()

    func transitionDuration(using transitionContext: UIViewControllerContextTransitioning?) -> TimeInterval {
        return 0.6
    }

    func animateTransition(using transitionContext: UIViewControllerContextTransitioning) {

        guard let toViewController = transitionContext.viewController(forKey: .to),
              let fromViewController = transitionContext.viewController(forKey: .from) else { return }
        let containerView = transitionContext.containerView

        let finalWidth = toViewController.view.bounds.width * 0.3
        let finalHeight = toViewController.view.bounds.height

        if isPresenting {
            let tapGesture = UITapGestureRecognizer(target: toViewController, action: #selector(UIViewController.dismissControllerAnimated))
            dimmingView.addGestureRecognizer(tapGesture)

            //adds the dimming view
            dimmingView.backgroundColor = .black
            dimmingView.alpha = 0.0
            containerView.addSubview(dimmingView)
            dimmingView.frame = containerView.bounds
            //adds the menu view controller to our container
            containerView.addSubview(toViewController.view)

            //init frame off the screen
            toViewController.view.frame = CGRect(x: -finalWidth, y: 0, width: finalWidth, height: finalHeight)
        }

        let transform = {
            self.dimmingView.alpha = 0.5
            toViewController.view.transform = CGAffineTransform(translationX: finalWidth, y: 0)
        }

        let identity = {
            self.dimmingView.alpha = 0.0
            fromViewController.view.transform = .identity
        }

        //animates the transition
        let duration = transitionDuration(using: transitionContext)
        let isCancelled = transitionContext.transitionWasCancelled
        UIView.animate(withDuration: duration, animations: {
            self.isPresenting ? transform() : identity()
        }) { (_) in
            transitionContext.completeTransition(!isCancelled)
            if !self.isPresenting {
                self.dimmingView.removeFromSuperview()
            }
        }
    }
}
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...