No no. These applications have been removed, which means that they do not contain information about where the functions start or end. However, since objective-c is dynamic, any objective-c methods will have their name and address in the objective-c segment. You can get this information with otool -ov
, but it's easier to interpret if you use class-dump-z , which provides objective-c headers and will include the addresses of each method if you use the -A
option. Once you have the addresses, you can view your file and manually divide it into methods.
source share