Suppose we declare a class as follows in MyClass.h
file as follows.
#import <Foundation/Foundation.h>
@interface MyClass : NSObject
+(void)aClassMethod;
@end
And in MyClass.m
File..
@implementation MyClass
+(void)aClassMethod{
NSLog(@"It is a Class method");
}
@end
My question is that after compilation where this aClassMethod
will be stored??
and if we declare some member functions , then where they will be stored.