When I define a new class inheriting from NSObject:
@interface Photo : NSObject
{
    NSString* caption;
    NSString* photographer;
}
@property NSString* caption;
@property NSString* photographer;
@end
are all the class methods (like alloc) in NSObject inherited by the new class Photo?
 
     
     
    