It is the description
instance method, declared as:
- (NSString *)description
Here’s an example implementation (thanks to grahamparks):
- (NSString *)description {
return [NSString stringWithFormat: @"Photo: Name=%@ Author=%@", name, author];
}