我有一个名为picPressed
的UIButton,这个UIButton有一个背景图像。我想能够得到按钮的名称背景图像。我正在尝试类似的东西:
let hello = picPressed.backgroundImage.name()
Print(hello)
但是得到一个错误说:
value of type '(UIControl.State) -> UIImage?' has no member 'name'
如何在swift5中隔离此属性?
否,按钮不记得它们的名称(或安装到它们中的映像的名称(
我建议您创建一个对象来管理按钮,获取图像的文件名,并记住该文件名以备将来使用。(或者,您可以将UIButton子类化,但这可能会变得复杂。(