gpt4 book ai didi

ios - Swift: 将 UIView 设置为 UIBarButton/UIButton 的背景

转载 作者:行者123 更新时间:2023-11-28 07:29:37 25 4
gpt4 key购买 nike

如何将 UIView 设置为 UIBarButton 的背景? UIBarButton/UIButton 应该包含它的标题和背景图片。

我尝试覆盖 UIButton 类,但它不起作用。如果有人有解决方案,请告诉我。

最佳答案

// For UIBarButtonItem (just set customView parameter)

let frame = CGRect(x: 0, y: 0, width: 100, height: 40)
let customView = UIView(frame: frame)
customView.backgroundColor = .red

let barButtonItem = UIBarButtonItem(customView: customView)

// for UIButton

// 1. Subview case (add subview on your target UIButton, send to back so that it does not cover title)

let button0 = UIButton(frame: frame)
button0.addSubview(customView)
button0.sendSubviewToBack(customView)
button0.setTitle("Button", for: UIControl.State())

// 2. Rendered image case (as an alternative render your view to an image and add as a background image)

// Extension for capturing a UIVIew as an image:
extension UIImage {
convenience init?(view: UIView) {
UIGraphicsBeginImageContext(view.frame.size)
guard let ctx = UIGraphicsGetCurrentContext() else {
return nil
}
view.layer.render(in: ctx)
let image = UIGraphicsGetImageFromCurrentImageContext()
UIGraphicsEndImageContext()
guard let cgImage = image?.cgImage else {
return nil
}
self.init(cgImage: cgImage)
}
}

let button1 = UIButton(frame: frame)
let customViewImage = UIImage.init(view: customView)
button1.setBackgroundImage(customViewImage, for: UIControl.State())
button1.setTitle("Button", for: UIControl.State())

关于ios - Swift: 将 UIView 设置为 UIBarButton/UIButton 的背景,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55235082/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com