4 lines
112 B
Objective-C
4 lines
112 B
Objective-C
NSArray *symbols = [NSThread callStackSymbols];
|
|
for (NSString *symbol in symbols) {
|
|
NSLog(@"%@", symbol);
|
|
}
|