Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to decompile framework file in iOS to get source code?

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.

like image 389
Paresh Avatar asked Jan 28 '16 12:01

Paresh


1 Answers

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

like image 95
Kiran Jasvanee Avatar answered Sep 19 '22 14:09

Kiran Jasvanee