, , Objective C. :
NSString *s = @"Hello World!";
NSLog(@"Length is %d", s.length);
, . Objective C id. :
id s = @"Hello World!";
NSLog(@"Length is %d", s.length);
, id , length. :
id s = @"Hello World!";
NSLog(@"Length is %d", [s length]);
, Objective C NSString, , , length. , :
id s = [[UIView alloc] init];
NSLog(@"Length is %d", [s length]);
, (unrecognized selector sent to instance), UIView length.