WRNavigationBar_swift icon indicating copy to clipboard operation
WRNavigationBar_swift copied to clipboard

WRNavigationBar which allows you to change NavigationBar's appearance dynamically

Results 24 WRNavigationBar_swift issues
Sort by recently updated
recently updated
newest added

当用手势返回时,会出现下面这种问题 ![image](https://user-images.githubusercontent.com/8085482/30573050-21522ddc-9d24-11e7-8977-bd056d73a058.png)

在storyboard中创建的导航控制器,在其根试图控制器中滑动改变导航栏透明度无效,导航栏始终是透明的

当前一个控制器导航栏alpha为0,下一个控制器导航栏alpha为1然后添加UIActivityIndicatorView并startAnimating 侧滑时导航栏会闪

``` override func viewDidLoad() { refreshControl = UIRefreshControl.init() navBarBackgroundAlpha = 0 } ``` ``` private func changeNavBarAnimateWithIsClear(isClear:Bool) { UIView.animate(withDuration: 0.5, animations: { [weak self] in if let weakSelf = self...