删除 UINavigationBar 上的渐变
如何删除 UINavigationBar 上的默认渐变?我要设置什么属性来执行此操作?
How can I remove the default gradient on a UINavigationBar? What property do I set to do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以通过将此代码弹出到具有导航栏的类中来删除渐变并设置您自己的纯色。您可以将 UIColor 更改为您需要的任何颜色。请注意,此代码需要位于另一个实现之外,因此无论您将其放入哪个 .m 文件中,都将其放在该文件中已实现的类的 @implmentation 之前。
You can remove the gradient and set your own solid color by popping this code into the class that has the navigation bar. You can change the UIColor to whatever color you need. Note that this code needs to be outside of another implementation, so whatever .m file you put it in put it before the @implmentation of the class already implemented in that file.