I have a person object of class Person with property is address, age. When I check properties, I print address on screen with:
NSLog(@"Add: %@, length: %i", person.address, [person.address length]);
The result is: Add: nil, length: 6
Can you explain for me why the string is null but its length shows as 6?
Thanks.