以编程方式更改条形按钮背景的图像大小?
Posted
技术标签:
【中文标题】以编程方式更改条形按钮背景的图像大小?【英文标题】:change the size of the image for the bar button background programatically? 【发布时间】:2017-05-03 15:52:51 【问题描述】:在我的导航栏中,我放置了一个栏按钮,并为背景设置了图像。但是图像的大小比按钮的大小要大得多。所以我试图解决这个问题:
override func viewDidAppear(_ animated: Bool)
let imageView = UIImageView(frame: CGRect(x: 0, y: 0, width: 5, height: 5 ))
imageView.contentMode = .center
let image = UIImage(named: "Info")
imageView.image = image
info_btn.image = image
但是图片仍然被拉长。知道我该如何解决吗?
【问题讨论】:
【参考方案1】:试试info_btn.imageView.contentMode = .scaleAspectFit
【讨论】:
以上是关于以编程方式更改条形按钮背景的图像大小?的主要内容,如果未能解决你的问题,请参考以下文章