macho/research/custom_loader/a.mm

32 lines
420 B
Plaintext
Raw Normal View History

2023-06-07 10:49:59 +07:00
#import <Foundation/Foundation.h>
@interface Foo : NSObject
@end
@implementation Foo
- (void)bar {
NSLog(@"%@", self);
}
@end
@interface Bar : NSObject
@end
@implementation Bar
+ (void)load {
NSLog(@"%@", self);
}
@end
@implementation Baz : Bar
@end
2023-06-07 10:49:59 +07:00
int main(int argc, const char * argv[]) {
@autoreleasepool {
NSLog(@"Hello, World!");
Foo *foo = [[Foo alloc] init];
[foo bar];
}
return 0;
2023-06-07 10:49:59 +07:00
}