在 UITabBar 背景中设置渐变
我可以实现这样的事情的最简单方法是什么:
是通过子类化 UITabBarController 吗?如果是的话需要改变什么属性?
What is the easiest way that I can achieve something like this:
Is it through subclassing a UITabBarController? If yes what property needs to be changed?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
希望它能帮助你......
Hope it will help you....
是的,子类化 UITabbarController 是执行此操作的正确方法。
覆盖drawRect方法:
并将带有渐变的图像添加到您的项目中。
Yes, subclassing an UITabbarController is the right way to do this.
Overwrite the drawRect method:
And add the image with gradient into your project.
这是一个老问题,但它在搜索 TabBar 渐变时首先出现。一个更简单的方法是通过外观来做到这一点。只需将其放入您的 applicationDidFinishLaunching 方法中即可。
而且,作为奖励,如果您喜欢在代码中创建渐变图像,您可以这样做:
This is an old question but it comes up first in a search for TabBar gradients. A far easier way to do this is with appearances. Just put this in your applicationDidFinishLaunching method.
And, as a bonus, if you prefer to create a gradient image in code, you can do this:
我的应用程序遇到了同样的问题,我想出了以下方法:
在 applicationDidFinishLaunching 方法中,我创建了一个绘制渐变的函数,并使用 UITabBarController 的实例根据设备的宽度设置正确的渐变框架。
获取 UITabBarController 的实例
设置渐变
我不确定这是否是正确的方法,但它确实对我有用。
I had the same problem with my app and I came up with following:
in applicationDidFinishLaunching method I created a function to draw a gradient and used an instance of my UITabBarController to set up a correct gradient frame depending on the width of the device.
get the instance of UITabBarController
set your gradient
I'm not sure if that's a correct approach but it did work for me.