如何在充满 UIImageViews 的 NSArray 中搜索某个图像属性?
我有一个充满 UIImageViews 的 NSArray。我想对数组进行 indexOfObject
调用,但使用 UIImage 作为搜索参数。所以我想根据 UIImageView 的图像属性找到它的索引。有没有一种简单的方法可以做到这一点,或者我是否需要通过数组自定义迭代?
I have an NSArray filled with UIImageViews. I want to do an indexOfObject
call on the array, but using a UIImage as the search parameter. So I want to find the index of a UIImageView based on it's image property. Is there an easy way to do this or do I need to customize the iteration thru the array?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用
indexOfObjectPassingTest:
:You can use
indexOfObjectPassingTest:
:它需要更多内存,但您可以存储与图像视图具有相同顺序的图像对象的 NSArray。然后就是一个简单的索引映射。
It takes more memory but you can store an NSArray of your image objects that have the same order as your image views. Then it is a simple mapping of indexes.