This is the normal normal class interface , inheriting from NSObject, where you declare ivars, properties, and methods
@interface MyClass : NSObject
@end
categories, . ( , ). (, @interface MyClass (Private)), @implementation MyClass (Private), ( ) , . , ivars , (named) .
@interface MyClass ()
@end
@interface MyClass (Private)
@end