Commit cb5b9b2d by ahusseini

fixed typo on line 135

parent 4f6aa0fe
......@@ -132,7 +132,7 @@ public class BottomNavigationController : UITabBarController, UITabBarController
public func tabBarController(tabBarController: UITabBarController, animationControllerForTransitionFromViewController fromVC: UIViewController, toViewController toVC: UIViewController) -> UIViewControllerAnimatedTransitioning? {
let fromVC: UIViewController? = fromVC
let toVC: UIViewController? = toVC
if nill == fromVC || nil == toVC {
if nil == fromVC || nil == toVC {
return nil
}
return .Fade == transitionAnimation ? BottomNavigationFadeAnimatedTransitioning() : nil
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment