Does something like ".net reflector" exist for objective-c applications?
For .NET applications a special tool called .NET Reflector exist that can load a compiled application and show a list of classes, imports, reversed code and 开发者_开发百科other app "internals". Objective-c with Cocoa is dynamic like .NET - it stores type and class information inside compiled app so selectors can be accessed by name etc.
So, is there some tool like .NET Reflector but for objective-c code so i can load compiled objective-c application and get list of classes, interfaces, selectors etc?
Yes there is. It's called class-dump
and is available here.
I'm using a freeware called ilspy.net, can be found here
精彩评论