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