何时在iPhone中发布NSString

时间:2009-03-02 12:38:30

标签: iphone objective-c cocoa

我有以下方法

   -(NSMutableArray *) getPaises {
     NSMutableArray * paises;
     paises = [[NSMutableArray alloc] init];
     while( get new row ) {
      NSString *aPais =  [NSString stringWithUTF8String:(char *)sqlite3_column_text(compiledStatement, 0)];
      [paises addObject:aPais];
     }
     return paises;
    }

我没有发布aPais,因为如果我这样做,应用程序崩溃了。我不知道何时或是否应该在使用它之后将其释放到某处,如果是,我该怎么做。刚刚发布NSMutableArray就足够了?或者我是否必须遍历它并释放每个对象?

如果我不必释放它,谁负责释放?

2 个答案:

答案 0 :(得分:16)

正如epatel所说,你不需要释放那个特定的字符串。如果你想更积极主动,你可以这样做:

-(NSMutableArray *) getPaises {
    NSMutableArray * paises;
    paises = [[[NSMutableArray alloc] init] autorelease];
    while( get new row ) {
        NSString *aPais =  [[NSString alloc] initWithUTF8String:(char *)sqlite3_column_text(compiledStatement, 0)];
        [paises addObject:aPais];
        [aPais release];
    }
    return paises;
}

总结:

  • [[NSString alloc] initWith ...] - >您必须发布或自动发布。

  • [NSString stringWith ...] - >无需发布。

- 编辑:添加autorelease用于paises,因为您要返回它。当你返回一个对象时,如果你有alloc& init'd它,总是自动释放它。

答案 1 :(得分:5)

stringWithUTF8String:返回一个自动释放字符串,该字符串将在下一个eventloop中由Cocoa自动释放。但是当你执行addObject:时,字符串也会保留在数组中......所以只要它在数组中就会被保留。