vote up 0 vote down star

I have created a while-loop in which temporary strings are created (string is updated everytime that loop performs). How can I create an array out of these temporary strings?

flag

2 Answers

vote up 5 vote down check

It sounds like you're looking for something like this:

NSMutableArray *array = [[NSMutableArray alloc] init];

while(foo) {
    // create your string
    [array addObject:string];
}
link|flag
Don't forget to release or autorelease the array. – Peter Hosey Mar 17 at 13:43
vote up 0 vote down
-(NSArray*) makeArray
{
    NSMutableArray* outArr = [NSMutableArray arrayWithCapacity:512]; // outArr is autoreleased
    while(notFinished)
    {
      NSString* tempStr = [self makeTempString];
      [outArr addObject:tempStr]; // will incr retain count on tempStr
    }
    return [outArr copy]; // return a non-mutable copy
}
link|flag
[outArr copy] will leak, and still return a mutable array – cobbal Mar 17 at 12:18
-copy won't necessarily return a mutable array; it should be immutable. -mutableCopy definitely would return a mutable array. [[copy] autorelease] is the correct way. – Peter Hosey Mar 17 at 13:43

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.