具有透明度的 UIBarButtonItem
这样的按钮怎么实现呢?
当我使用 setBackgroundImage:forState:barMetrics:
并使用图案图像时,我没有边框、阴影、渐变...
还尝试了 setTintColor:
[UIColor clearColor]
根本不起作用。
有什么想法吗?
How to achieve button like this?
When I use setBackgroundImage:forState:barMetrics:
and use pattern image, I got no border, shadow, gradient...
Also tried setTintColor:
with [UIColor clearColor]
which does not work at all.
Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尝试为您的 UIBarButtonItem 设置自定义视图
Try to set custom view for your UIBarButtonItem
我不知道您的目标是哪个 iOS 版本,但如果您使用的是 iOS 5,则可以使用
UIAppearance
协议来设置自定义背景图像。但要注意,背景图片必须是可拉伸的!
I don't know what iOS version you're targeting but if you're on iOS 5 you can use the
UIAppearance
protocol to set a custom background image.But beware, the background image must be stretchable!