制作一个清晰(半透明)的 UIBarButttonItem IOS 5
我试图使用以下代码设置 UIBarButtonItem 的色调颜色,但我得到的只是一个黑色按钮。有没有一种方法可以在不需要使用自定义图像的情况下完成此任务?
[[UIBarButtonItem appearance] SetTintColor:[UIColor clearColor]]:
I am trying to set the tint color for a UIBarButtonItem using the following code, but all I get is a black button. Is there a way to accomplish this without the need to use custom images?
[[UIBarButtonItem appearance] SetTintColor:[UIColor clearColor]]:
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用按钮创建自定义 UIBarButtonItem
create a custom UIBarButtonItem with a button
如果您的 UIToobar 或 UINavigationBar 是半透明的,则栏按钮会自动变为半透明。
[[self.navigationController navigationBar] setTranslucent:YES];
AFAIK,您不能单独使栏按钮半透明。
If your UIToobar or UINavigationBar is translucent, bar buttons automatically become translucent.
[[self.navigationController navigationBar] setTranslucent:YES];
AFAIK, You can't make a bar button alone translucent.