如何在充满 UIImageViews 的 NSArray 中搜索某个图像属性?

发布于 2024-12-12 06:14:57 字数 160 浏览 0 评论 0原文

我有一个充满 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

爱的十字路口 2024-12-19 06:14:57

您可以使用indexOfObjectPassingTest:

NSUInteger index = [array indexOfObjectPassingTest:^BOOL(UIImageView *imgv, NSUInteger idx, BOOL *stop) {
    *stop = (imgv.image == myImage);
    return *stop;
}];

You can use indexOfObjectPassingTest::

NSUInteger index = [array indexOfObjectPassingTest:^BOOL(UIImageView *imgv, NSUInteger idx, BOOL *stop) {
    *stop = (imgv.image == myImage);
    return *stop;
}];
丶视觉 2024-12-19 06:14:57

它需要更多内存,但您可以存储与图像视图具有相同顺序的图像对象的 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文