Comment on Fixing QuickLook (2023)parentComments−saagarjha2yYou can definitely strip the symbols; the runtime metadata is stored separately.−TazeTSchnitzel2yYes but what Objective-C people consider “no symbols” looks like symbols to C programmers.−saagarjha2yTell that to ___lldb_unnamed_symbol74$$TextEdit−LeoNatan252yYes, but you can often still figure out what the name is if you pause in that method and print _cmd ($arg2), or look at the calling stack entry and see what selector string was used.−saagarjha2yPersonally I just use a disassembler that parses this metadata for me
Comments
You can definitely strip the symbols; the runtime metadata is stored separately.
Yes but what Objective-C people consider “no symbols” looks like symbols to C programmers.
Tell that to ___lldb_unnamed_symbol74$$TextEdit
Yes, but you can often still figure out what the name is if you pause in that method and print _cmd ($arg2), or look at the calling stack entry and see what selector string was used.
Personally I just use a disassembler that parses this metadata for me