I know in objective c you can not add instance variable in category of interface. that is ok but today i see something i can not figure it out ,(why is this behavior right?)
@interface XXXX:NSObject
@end
@interface XXXX(){
@private
int x;
}
@end
why can i add add instance variable in empty () category , also why no one mention in in the internet.
Thanks All