-
Notifications
You must be signed in to change notification settings - Fork 677
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ios10返回navigationBar颜色不会立马消失 #51
Comments
+1 |
我试了一下,在上一个页面的ViewWillAppear里面,再用lt_setBackgroundColor,可以解决这种变化突兀的情况。感觉这就需要在相关的页面都设置这个,还是略麻烦。 |
我在ViewWillAppear设置了,还是有这种情况呢? |
我也有这样的情况,上一层 viewWillAppear 并不能解决问题, @xd54622 请教下你是怎么设置的? |
@sseen @github410117 我就是在上一层的viewWillAppear上加一个设置背景颜色的,感觉效果还好啊。
然后在第二个页面是这样设置的:
|
@xd54622 谢了你的回复。不过还是没有任何作用,我只能不使用[self.navigationController.navigationBar lt_reset] 而用 [self.navigationController.navigationBar lt_setBackgroundColor:navBgColor] 来给子页面的导航栏设置颜色,依然不能用 uinavigationbar 的 appearance 来全局设置颜色,即便这样,效果也只是勉强能接受 |
同样遇到这个问题,通过这样一下方式解决(不是最佳实践,效果还能接受): 将 push 进来的页面的 backIndicator 用 leftBarButtonItem 代替。然后在点击方法中 pop 页面,就就会出现上面的现象 缺陷:
希望能帮到你们~ |
The text was updated successfully, but these errors were encountered: