.h
@interface className:NSObject
@end
-(void)work;
.m
@interface className()
{
NSString * props;
}
@end
@implementation className
-(void) work{
NSLog(@"I am working");
NSLog(@"I am making a %@",self->props);
}
:Extension using as declaring Class Private properties and methods;