2

我对如何在多维数组中添加对象感到很困惑。

初始化多维数组是否与仅一个简单数组相同?

这是我的初始化。

testList = [[NSMutableArray alloc] init];

我需要做类似的事情

testList[i][j] = item;

我试过了

[[[testList objectAtIndex:i]objectAtIndex:j] addObject:item];

但它似乎不起作用:(

4

4 回答 4

4

你要添加很多 C 来做到这一点。了解 NSMutableArray 的工作原理以及与 C/C++ 中已知的 2D 数组相比有何不同,这一点很重要。

在可变数组中,您可以存储另一个数组。例如:

NSMutableArray *first = [[NSMutableArray alloc] init];
NSMutableArray *second = [[NSMutableArray alloc] init];

[first addObject:second];

现在你在第一个数组的第一行有数组!这很像 C/C++ 2D 数组。

因此,如果您想向“0,0”添加一些对象,请执行以下操作:

NSString *mytest = [[NSString alloc] initWithString:@"test"];
[second addObject:mytest];
[first addObject:second];

所以现在你的second包含NSStrings并且first包含second现在你可以像你想要的那样循环它。

----编辑:如果你想要 1,0,你只需要第二个NSMutableArray 的另一个实例例如你有这个数组:

arr

所以在这里你将在第二个数组中有 3 个元素。

NSMutableArray *first = [[NSMutableArray alloc] init];
for(int i =0 ; i < your_size_condition ; i++) {//if you have size, if don't not a problem, you could use while!
   NSArray *second = [[NSArray alloc] initWithObjects:"@something",@"somethingelse",@"more",nil];
   [first addObject:second];
}

您可能需要实现NSCopying 协议来执行此操作。

于 2012-07-17T10:27:25.413 回答
4

如果你需要一个固定大小的数组,那么使用普通的 C 数组。在使用动态 ObjC 数组之前,它需要创建它:

NSMutableArray* array = [NSMutableArray arrayWithCapacity:N];
for(int i=0; i<N; i++) {
    [array addObject:[NSMutableArray arrayWithCapacity:M]];
}

UPD:以下方法可能有助于使用此类数组:

[[array objectAtIndex:i] addObject:obj];
[[array objectAtIndex:i] insertObject:obj atIndex:j];
[[array objectAtIndex:i] replaceObjectAtIndex:j withObject:obj];
于 2012-07-17T10:27:42.790 回答
0

要扩展@onegray 的答案,您可以设置一些类别方法以使软多维数组更易于处理。

MultiMutableArray.h

@interface NSMutableArray(MultiMutableArray)
  -(id)objectAtIndex:(int)i subIndex:(int)s;
  -(void)addObject:(id)o toIndex:(int)i;
@end


@implementation NSMutableArray(MultiMutableArray)

MultiMutableArray.m

#import "MultiMutableArray.h"

-(id)objectAtIndex:(int)i subIndex:(int)s
{
    id subArray = [self objectAtIndex:i];
    return [subArray isKindOfClass:NSArray.class] ? [subArray objectAtIndex:s] : nil;
}

-(void)addObject:(id)o toIndex:(int)i
{
    while(self.count <= i)
        [self addObject:NSMutableArray.new];
    NSMutableArray* subArray = [self objectAtIndex:i];
    [subArray addObject: o];
}

@end

例如,MultiArrayTests.m

#import <SenTestingKit/SenTestingKit.h>

#import "MultiMutableArray.h"

@interface MultiArrayTests : SenTestCase
@end

@implementation MultiArrayTests

-(void)testMultiArray
{
    NSMutableArray* a = NSMutableArray.new;
    [a addObject:@"0a" toIndex:0];
    [a addObject:@"0b" toIndex:0];
    [a addObject:@"0c" toIndex:0];
    [a addObject:@"1a" toIndex:1];
    [a addObject:@"1b" toIndex:1];
    [a addObject:@"2a" toIndex:2];
    STAssertEquals(a.count, 3U, nil);
    NSMutableArray* a1 = [a objectAtIndex:0];
    NSMutableArray* a2 = [a objectAtIndex:1];
    NSMutableArray* a3 = [a objectAtIndex:2];
    STAssertEquals(a1.count, 3U, nil);
    STAssertEquals(a2.count, 2U, nil);
    STAssertEquals(a3.count, 1U, nil);
}

@end

我已经在http://peterdeweese.tumblr.com/post/27411932460/soft-multi-dimensional-arrays-in-objective-c写了更多细节

于 2012-07-17T15:36:13.050 回答
0
[[testList objectAtIndex:i] insertObject:item atIndex:j];
于 2012-07-17T10:46:48.070 回答