我有一个带有图案的 UINavigationBar。我见过很多实现透明 UIBarButtonItem 的 UI,我想知道如何实现。
不幸的是,Tint dosent 可以解决问题...
请帮忙...
我有一个带有图案的 UINavigationBar。我见过很多实现透明 UIBarButtonItem 的 UI,我想知道如何实现。
不幸的是,Tint dosent 可以解决问题...
请帮忙...
在 UIBarButton 项内放置一个 UIButton。按钮可以是透明的。在 Xcode 的 Interface Builder 中,只需将 UIButton 拖到 UINavigationBar 的空白角落之一。Xcode 会自动创建一个 UIBarButtonItem 并将 UIButton 放入其中。然后,您可以将 UIButton 类型设置为自定义并应用其他属性,例如标题或图像。
按照 Melsam 描述的过程并使用设置按钮的透明度
button.backgroundColor = [UIColor colorWithRed:0.0 green:0.0 blue:0.0 alpha:0.5];