菜鸟教程小白 发表于 2022-12-13 07:30:21

iphone - iOS查询多维数组并返回索引路径


                                            <p><p>我有一个包含其他 NSMutableArrays 的 NSMutableArray(我将它们称为子数组)。这些子数组每个都有一个唯一的变量,称为 id。我想返回包含某个 id 的子数组的索引路径。例如,如果其中一个子数组的 id 为 25,我怎样才能找到该子数组的索引路径(不是子数组中 id 的索引路径)?</p>

<p>提前谢谢你。如果您有任何问题,请告诉我。</p>

<p>干杯,埃文。</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>您基本上必须手动搜索所有子数组。例如:</p>

<pre><code>NSUInteger outerIndex = [outerArray indexOfObjectPassingTest:^(id subarray, NSUInteger outerIdx, BOOL *stopOuter) {
    NSUInteger innerIndex = [subarray indexOfObjectPassingTest:^(id obj, NSUInteger innerIdx, BOOL *stopInner) {
      return ;
    }];
    return innerIndex != NSNotFound;
}];
NSUInteger indexes[] = {outerIndex, innerIndex};
NSIndexPath *indexPath = ;
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于iphone - iOS查询多维数组并返回索引路径,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/5869817/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/5869817/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: iphone - iOS查询多维数组并返回索引路径