Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我创建了一个 UIButton 子类,我需要获取按钮所具有的图像的路径。我会写self.path但不会self.imageView.image.path有任何想法吗?
self.path
self.imageView.image.path
我不相信你能得到这条路。如果您查看 UIImage 的 api 文档,您可以使用文件进行实例化,但是当您拥有一个实例时,该文件已经消失,并且仍然存在 NSData。
这不会很有效,但是如果您知道用于创建图像的候选文件,那么也许您可以散列 NSData,并与 UIButton 的 UIImage 上的 NSData 散列进行比较?