I want to know is there any way/tools to decompile framework file in objective C to get the source code. Just like in java there are JAD and other tools to decompile byte code to source code.
Asked
Active
Viewed 1.5k times
8
-
1This is not really possible, the compiled code is assembler code and you can't really get the original code back. Java (and .NET) are using a intermediate code which contains much of the original source code and therefor you can decompile it. – rckoenes Jan 28 '16 at 12:38
1 Answers
7
You can disassemble a binary and get back assembly source, but there is no way to get back your original Objective-C structured source code.
You may want to give Hopper a try. I didn't try it personally yet but Mike Ash says it's good.
Helper Source:- here

Community
- 1
- 1

Kiran Jasvanee
- 6,362
- 1
- 36
- 52