#import "InterfaceA.h" @interface ObjCRealization_ClassA : NSObject <InterfaceA> @end @implementation ObjCRealization_ClassA - (void)doAction { NSLog(@"Do action"); } @end