otool -ov 二进制文件 It will output the Objective-C class structures and their defined methods.
nm 二进制文 显示符号表
strings - -a -arch armv7 "xxx" | grep StopAuth 需要先cd 到 xxx.app路径下,再执行上述命令,xxx为二进制文件名称,StopAuth为要查询的内容。 The “strings” tool can output a list of the methods that the library calls。
strings - -a -arch armv7 "lcx" > test.txt 同上,将结果导入到test.txt文件内