5

我正在尝试创建数组(城市)的数组(州)。每当我尝试将一个项目添加到我的 City 数组时,我都会收到此错误:

'NSInvalidArgumentException',原因:'*** +[NSMutableArray addObject:]:无法识别的选择器发送到类 0x303097a0

我的代码如下。它出错的行是

 [currentCities addObject:city];

我确定我有一些内存管理问题,因为我仍然不太了解它。希望有人能向我解释我的错误。

if (sqlite3_prepare_v2(db, sql, -1, &statement, NULL) == SQLITE_OK){
        // We need to keep track of the state we are on
        NSString *state = @"none";
        NSMutableArray *currentCities = [NSMutableArray alloc];

        // We "step" through the results - once for each row
        while (sqlite3_step(statement) == SQLITE_ROW){
            // The second parameter indicates the column index into the result set.
            int primaryKey = sqlite3_column_int(statement, 0);
            City *city = [[City alloc] initWithPrimaryKey:primaryKey database:db];

            if (![state isEqualToString:city.state])
            {
                // We switched states
                state = [[NSString alloc] initWithString:city.state]; 

                // Add the old array to the states array
                [self.states addObject:currentCities];

                // set up a new cities array
                currentCities = [NSMutableArray init];
            }

            [currentCities addObject:city];
            [city release];
        }
    }
4

3 回答 3

9

这些行:

// set up a new cities array
currentCities = [NSMutableArray init];

应该读:

// set up a new cities array
[currentCities init];

这应该有望解决您的问题。你不是初始化你的数组,而是向一个类对象发送一个初始化消息,它什么都不做。之后,您的 currentCities 指针仍未初始化。

更好的是删除该行并更改第 4 行,以便您一步分配和初始化所有内容:

NSMutableArray *currentCities = [[NSMutableArray alloc] init];
于 2009-11-04T21:41:54.643 回答
3

您需要在 NSMutableArray 上调用某种初始化程序,不是吗?initWithCapacity,或类似的东西?如果你把它关掉,不确定你会得到什么。

** 刚刚测试过。让它 [[NSMutableArray alloc] init] 你会没事的。

于 2009-11-04T21:41:19.157 回答
1

这对我来说是初始化问题。

不得不从

NSMutableArray *myArray  = [NSMutableArray mutableCopy]; // not initialized.  don't know why this even compiles
[myArray addObject:someObject];  // crashed

NSMutableArray *myArray  = [NSMutableArray new]; // initialized!
于 2014-09-16T18:56:18.360 回答