Closed prine closed 8 years ago
Thank your for reporting both of the issues :+1: I get you back about them during the weekend.
I am thinking about 2 solutions for this problem:
Trying number 2 at the moment. Will let you know!
Oukay, perfect. I also started replacing the UIView with a CALayer and I have successfully fixed the Back button problem, but the resizing problem still exists. Will create a Pullrequest when I have found a solution for the resizing problem.
All you have to do is add this at line 91 of UINavigationBar+Animation.swift
busy_loadingView?.userInteractionEnabled = false
@stremblayiOS thank you!
Hello
First of all thanks for your library! I really like it and already used it in my application :). I found out that the back button is kind of blocked when the animation is running.
I found out that if you want to have the
UIView
still beeing responsive you need to add the optionsUIViewAnimationOptions.AllowUserInteraction
. So I changed the following code from:To this one:
But unfortunately the back button is still no responsive during animation..
Tested with IOS 8.4 Xcode 6.4 (iPhone Simulator)