I'm so stumped by this, I set the object in the array, but when I check it after they're all set, it comes up as (null)
for (int i = 0; i < [lines count]; i+=2) {
[terms addObject:[lines objectAtIndex:i]];
NSLog(@"%@",[terms objectAtIndex:i]);
}
Am I doing something wrong? terms is declared in the header, set as a property, and synthesized as an NSMutableArray