You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
502 B
36 lines
502 B
10 years ago
|
/*
|
||
|
* Copyright (c) 2014 - Facebook.
|
||
|
* All rights reserved.
|
||
|
*/
|
||
|
|
||
|
#import <Foundation/NSObject.h>
|
||
|
|
||
|
@interface MyClass : NSObject
|
||
|
+ (void)aClassMethod;
|
||
|
- (void)anInstanceMethod;
|
||
|
+ (void)aClassMethod2;
|
||
|
- (int) getX;
|
||
|
@end
|
||
|
|
||
|
@implementation MyClass
|
||
|
+ (void)aClassMethod {
|
||
|
MyClass *myClass = [self alloc];
|
||
|
}
|
||
|
|
||
|
- (void)anInstanceMethod {
|
||
|
[MyClass aClassMethod];
|
||
|
}
|
||
|
|
||
|
+ (void)aClassMethod2 {
|
||
|
[self aClassMethod];
|
||
|
}
|
||
|
|
||
|
- (int) getX {
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
- (void)anInstanceMethod2 {
|
||
|
[self getX];
|
||
|
}
|
||
|
@end
|