BubbleTransition icon indicating copy to clipboard operation
BubbleTransition copied to clipboard

Unbalanced calls to begin/end appearance transitions for

Open arqambutt opened this issue 6 years ago • 6 comments

The warning "The unbalanced calls to begin/end appearance transitions" seems to occur on my UINavigationViewController when i tries to present another controller.

arqambutt avatar Jun 06 '18 11:06 arqambutt

How are you presenting the new controller?

andreamazz avatar Jun 21 '18 08:06 andreamazz

            self.transition = BubbleTransition()
            self.transition.startingPoint = self.btn_AddJoke.center
            let nav = UINavigationController.init(rootViewController: vc)
            nav.setNavigationBarHidden(true, animated: false)
            nav.transitioningDelegate = self
            nav.modalPresentationStyle = .custom
            nav.setNavigationBarHidden(true, animated: false)
            self.present(nav, animated: true, completion: nil)

arqambutt avatar Jun 21 '18 15:06 arqambutt

OK, pushing a navigation controller causes that. I'm a bit stumped, help on the subject is welcome.

andreamazz avatar Jun 22 '18 07:06 andreamazz

Hi, I have the same problem, have you solved?

federico2390 avatar Jan 09 '19 20:01 federico2390

Same problem here. Anybody has the solution?

WNjun avatar Jul 24 '19 06:07 WNjun

I was able to fix this by changing the modalPresentationStyle of the navVC to .overFullScreen

navVC.modalPresentationStyle = .overFullScreen`

fernland avatar Apr 14 '20 06:04 fernland