TransitionTreasury icon indicating copy to clipboard operation
TransitionTreasury copied to clipboard

Easier way to push your viewController.

Results 22 TransitionTreasury issues
Sort by recently updated
recently updated
newest added

你好,Demo中Present&Dismiss的Fade和PopTip返回的时候,都会出现黑屏,Swift 5.0,能麻烦看下吗

I am presenting view controller with Evelate transition method but I want to hide mask view after the presenting controller. is there any way for that? let updateTransition: TRPresentTransitionMethod =...

Using the code example in the readme: ``` swift let storyboard = UIStoryboard(name: "Main", bundle: nil) let mainVC = storyboard.instantiateViewControllerWithIdentifier("searchVC") as? SearchViewController navigationController?.tr_pushViewController(mainVC, method: TRPushTransitionMethod.Fade, completion: { print("Push finish") })...

My code is here: let MainStoryBoard = UIStoryboard(name: "Main", bundle: nil); let ForgotPasswordVC = MainStoryBoard.instantiateViewController(withIdentifier: "ForgotPasswordVC"); navigationController?.tr_pushViewController(ForgotPasswordVC, method: TRPushTransitionMethod.page);` I'm getting this error: Generic parameter 'T' could not be inferred

Cannot get library to work with current documentation. Example: `navigationController?.tr_pushViewController(vc, method: TRPushTransitionMethod.Fade, completion: { print("Push finish") })` TRPushTransitionMethod is no longer typed on this method `TransitionAnimationable` is.

don't print Second deinit

Hello, Thank you for the library, it's amazing. I found a small bug when pushing view with tr_pushViewController . The second view keep using storyboard size (iphone 7) , I'm...

Do you have an ETA of Swift 4 support?