自定义了 navigation 时, 用右滑退出 navigation会有空白 而不是系统提供的渐变,而手机QQ的navigation 是自定义的 但是侧滑的时候不影响 效果。 具体实现操作如下:1.打开手机QQ任意一个好友的详情2.侧滑pop3.观察Navigation的效果
需要帮我提供一个思路, 目前 正常的方式我全部试过,UIViewControllerAnimateTransition转场我也试过,依然没有实现需求
https://github.com/zys456465111/CustomPopAnimation/blob/master/CustomPopAnimation%2FPopAnimation.m方案一应该可以,即UIViewControllerAnimateTransition + UIPanGestureRecognizer + UIPercentDrivenInteractiveTransition。
UIPanGestureRecognizer的handler里可以通过offset计算出当前的progress,根据progress更新navigationbar的alpha应该就可以了。
希望有用。
https://github.com/zys456465111/CustomPopAnimation/blob/master/CustomPopAnimation%2FPopAnimation.m
方案一应该可以,即UIViewControllerAnimateTransition + UIPanGestureRecognizer + UIPercentDrivenInteractiveTransition。
UIPanGestureRecognizer的handler里可以通过offset计算出当前的progress,根据progress更新navigationbar的alpha应该就可以了。
希望有用。