如何设置大小 leftBarButtonItem?
How can I set size leftBarButtonItem?
我正在尝试以编程方式设置左按钮栏项目的大小,但我做不到。
这是我的代码:
let backButton = UIButton(frame: CGRect(x: 0, y: 0, width: 30, height: 30))
backButton.setBackgroundImage(UIImage(named: "hipster_pelo2.png"), for: .normal)
self.navigationItem.leftBarButtonItem = UIBarButtonItem(customView: backButton)
但这是 iphone X 中 Xcode 9 和 swift 3 的结果。在图像中,您可以看到标题应用将其向右移动,因为按钮大小:
有人知道问题出在图像尺寸上吗??
您可以使用
限制条形按钮项目的大小
let barButton = UIBarButtonItem(customView: backButton)
NSLayoutConstraint.activate([(barButton.customView!.widthAnchor.constraint(equalToConstant: 30)),(barButton.customView!.heightAnchor.constraint(equalToConstant: 30))])
self.navigationItem.leftBarButtonItem = barButton
参考:https://skyebook.net/blog/2017/09/uibarbuttonitem-sizing-in-ios-11/
按钮的巨大框架是因为您为按钮背景设置的巨大图像。尽管您设置为按钮的框架应该覆盖按钮的隐式大小,但由于某些奇怪的原因,当作为自定义视图传递给条形按钮时,隐式大小将接管。因此,应用宽度和高度约束来限制自定义视图的大小是必要的。
编辑:
由于 OP 在从 url 加载图像并将其设置为按钮图像时遇到问题,我正在更新我的答案以证明相同的情况,
do {
try button.setImage(UIImage(data: Data(contentsOf: your_url)), for: .normal)
}
catch {
print(error)
}
OP 代码的问题是尝试设置按钮图像,甚至在图像下载之前。所以这应该可以帮助您解决问题:)
编辑 2:
OP 在将条形按钮的自定义视图设为圆形时遇到问题,因此这里是应该使 BarButton 项目的自定义视图呈圆形的代码:)
barButton.customView?.layer.cornerRadius = 15
barButton.customView?.layer.masksToBounds = true
希望对您有所帮助
我正在尝试以编程方式设置左按钮栏项目的大小,但我做不到。
这是我的代码:
let backButton = UIButton(frame: CGRect(x: 0, y: 0, width: 30, height: 30))
backButton.setBackgroundImage(UIImage(named: "hipster_pelo2.png"), for: .normal)
self.navigationItem.leftBarButtonItem = UIBarButtonItem(customView: backButton)
但这是 iphone X 中 Xcode 9 和 swift 3 的结果。在图像中,您可以看到标题应用将其向右移动,因为按钮大小:
有人知道问题出在图像尺寸上吗??
您可以使用
限制条形按钮项目的大小let barButton = UIBarButtonItem(customView: backButton)
NSLayoutConstraint.activate([(barButton.customView!.widthAnchor.constraint(equalToConstant: 30)),(barButton.customView!.heightAnchor.constraint(equalToConstant: 30))])
self.navigationItem.leftBarButtonItem = barButton
参考:https://skyebook.net/blog/2017/09/uibarbuttonitem-sizing-in-ios-11/
按钮的巨大框架是因为您为按钮背景设置的巨大图像。尽管您设置为按钮的框架应该覆盖按钮的隐式大小,但由于某些奇怪的原因,当作为自定义视图传递给条形按钮时,隐式大小将接管。因此,应用宽度和高度约束来限制自定义视图的大小是必要的。
编辑:
由于 OP 在从 url 加载图像并将其设置为按钮图像时遇到问题,我正在更新我的答案以证明相同的情况,
do {
try button.setImage(UIImage(data: Data(contentsOf: your_url)), for: .normal)
}
catch {
print(error)
}
OP 代码的问题是尝试设置按钮图像,甚至在图像下载之前。所以这应该可以帮助您解决问题:)
编辑 2:
OP 在将条形按钮的自定义视图设为圆形时遇到问题,因此这里是应该使 BarButton 项目的自定义视图呈圆形的代码:)
barButton.customView?.layer.cornerRadius = 15
barButton.customView?.layer.masksToBounds = true
希望对您有所帮助