以编程方式添加的自定义 UIBarButtonItem 不遵循 tintColor
Custom UIBarButtonItem added programmatically doesn't respect tintColor
简而言之,如何更改黑色按钮项的颜色(同时保持对其大小的控制)?
更长的版本:我以编程方式将一些自定义 UIBarButtonItems 添加到 UIToolbar。我正在使用 the solution found here 以便我可以控制项目的大小。
虽然这修复了 UIBarButtonItem 大小问题,但它不像典型的 UIBarButtonItem 那样尊重 tintColor。所以我得到这样的东西:
大号白色商品是我想要的颜色,但不是尺寸。此项目只是在 IB 中添加,tintColor 设置为默认值。
黑色的小项目是我想要的大小,并添加了以下代码(N.B。标有 // Not producing intended result 的行):
for e in (self.profile?.expressions)! {
let button = UIButton()
button.setImage(UIImage(named: "emojiph"), for: .normal)
button.addTarget(self, action: #selector(onEmojiInsert), for: .touchUpInside)
let barItem = UIBarButtonItem(customView: button)
barItem.tag = e.family_expression_id
let wConstraint = barItem.customView?.widthAnchor.constraint(equalToConstant: 32)
wConstraint?.isActive = true
let hConstraint = barItem.customView?.heightAnchor.constraint(equalToConstant: 32)
hConstraint?.isActive = true
// Not producing intented result
button.tintColor = UIColor.white
// Not producing intented result
barItem.customView?.tintColor = UIColor.white
// Not producing intented result
barItem.tintColor = UIColor.white
self.emojibar.items?.append(barItem)
// Add flexible spacers
if (e.family_expression_id < (self.profile?.expressions.count)!) {
self.emojibar.items?.append(UIBarButtonItem(barButtonSystemItem: UIBarButtonSystemItem.flexibleSpace, target: nil, action: nil))
}
}
一种解决方法是提供白色图像资源,但我更愿意找到更优雅的解决方案(如果存在的话)。
要使按钮更改显示图像的颜色以匹配色调颜色,则需要将按钮启动为系统类型
let button = UIButton(type: .system)
简而言之,如何更改黑色按钮项的颜色(同时保持对其大小的控制)?
更长的版本:我以编程方式将一些自定义 UIBarButtonItems 添加到 UIToolbar。我正在使用 the solution found here 以便我可以控制项目的大小。
虽然这修复了 UIBarButtonItem 大小问题,但它不像典型的 UIBarButtonItem 那样尊重 tintColor。所以我得到这样的东西:
大号白色商品是我想要的颜色,但不是尺寸。此项目只是在 IB 中添加,tintColor 设置为默认值。
黑色的小项目是我想要的大小,并添加了以下代码(N.B。标有 // Not producing intended result 的行):
for e in (self.profile?.expressions)! {
let button = UIButton()
button.setImage(UIImage(named: "emojiph"), for: .normal)
button.addTarget(self, action: #selector(onEmojiInsert), for: .touchUpInside)
let barItem = UIBarButtonItem(customView: button)
barItem.tag = e.family_expression_id
let wConstraint = barItem.customView?.widthAnchor.constraint(equalToConstant: 32)
wConstraint?.isActive = true
let hConstraint = barItem.customView?.heightAnchor.constraint(equalToConstant: 32)
hConstraint?.isActive = true
// Not producing intented result
button.tintColor = UIColor.white
// Not producing intented result
barItem.customView?.tintColor = UIColor.white
// Not producing intented result
barItem.tintColor = UIColor.white
self.emojibar.items?.append(barItem)
// Add flexible spacers
if (e.family_expression_id < (self.profile?.expressions.count)!) {
self.emojibar.items?.append(UIBarButtonItem(barButtonSystemItem: UIBarButtonSystemItem.flexibleSpace, target: nil, action: nil))
}
}
一种解决方法是提供白色图像资源,但我更愿意找到更优雅的解决方案(如果存在的话)。
要使按钮更改显示图像的颜色以匹配色调颜色,则需要将按钮启动为系统类型
let button = UIButton(type: .system)