As a test, I'm doing the following as the first line in applicationDidFinishLaunching:
NSArray *list=[[NSArray alloc] initWithObjects:@"Andy",@"Erik",@"Aaron",nil];
After the line runs, I have zero objects in the array. I'm doing this further down the code path but wanted to eliminate any influence to make sure my syntax is correct. I get the same results with NSMutableArray. In the debugger, I'm mousing over the array name to see if it has any values.
When I mouse over count in the following line, I see "varaible optimized awa... Summary":
int count = [list count];
Any suggestions why the array doesn't fill and why count isn't giving back an integer?