Skip to content

Instantly share code, notes, and snippets.

@fahied
Created March 20, 2020 18:55
Show Gist options
  • Save fahied/6ad484da61b049e2a85a060c41f59336 to your computer and use it in GitHub Desktop.
Save fahied/6ad484da61b049e2a85a060c41f59336 to your computer and use it in GitHub Desktop.
find Symbols/API usage in a framework
cd mapp.app //in Product folder under Xcode
nm myapp | grep UIWeb
for framework in Frameworks/*.framework; do
fname=$(basename $framework .framework)
echo $fname
nm $framework/$fname | grep UIWeb
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment