NSArray *tLines = [[NSArray alloc] initWithObjects:
[[NSArray alloc] initWithObjects:@"Matt", @"David", nil],
[[NSArray alloc] initWithObjects:@"Bob", @"Ken", nil], nil];
self.lines = tLines;
[tLines release];
I'm alloc
ing NSArray
s within an NSArray
, will the nested arrays get released when I call [lines release];
?