Which class is Abstract class in Objective-C, I have read some doc where NSObject is Abstract class, but we can create instance of NSObject, then how it is follow the abstract class rule.
NSObject *obj = [[NSObject alloc] init];
NSLog(@"description = %@",[obj description]);
NSLog(@"class name = %@",[obj class]);
Please advice.
And also I heard another one Abstract Class in Objective-C, what is the name of the class?