【发布时间】:2019-09-17 17:44:15
【问题描述】:
UIButton 是否有可能拥有比UIButton's frame 更大的高光图像(我想保留UIButton's frame 以便它是UIControlStateNormal 图像的大小,不是UIControlStateHighlight 图片)。
【问题讨论】:
标签: ios cocoa-touch uibutton
UIButton 是否有可能拥有比UIButton's frame 更大的高光图像(我想保留UIButton's frame 以便它是UIControlStateNormal 图像的大小,不是UIControlStateHighlight 图片)。
【问题讨论】:
标签: ios cocoa-touch uibutton
是的,这是可能的:
button.imageView?.contentMode = .center
button.imageView?.clipsToBounds = false
【讨论】: