Pergunta

Is this valid:

 NSObject anObject = [[NSObject alloc] init];
 [array1 addObject:anObject];
 [array2 addObject:anObject];

My money is on yes, since I'm only adding references to the same object, or am I wrong here?

Foi útil?

Solução

Yes :) Dont forget to make it a mutable array

Licenciado em: CC-BY-SA com atribuição
Não afiliado a StackOverflow
scroll top