Why is this NULL?
问题 Can anyone tell me why this is NULL ? So Array1 is NSMutable, and has an NSString object "UserName" at index 0; NSLog (@"Contents of array1 %@", [array1 objectAtIndex:0]); //prints UserName Now , I do this... array2 belongs to another class. I reference the class, import .h file, and add property and synthesize it. [object2.array2 addObject: array1]; //array2 is NSMutable properly initialized in it's respective class in the init method NSLog (@"Contents of array2 %@", [object2.array2