标签: ios xcode terminal
有没有办法打印第三方库使用的所有框架?
我的应用使用非公开API拒绝了。 我想检查它是否是由我的第三方库引起的。
谢谢
答案 0 :(得分:1)
您可以将otool(1)与-L一起使用,例如:
otool
-L
otool -L libThirdParty.a
用于库或
otool -L ThirdParty.framework/ThirdParty
用于框架。