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.
相关问题
- CALayer - backgroundColor flipped?
- Core Data lightweight migration crashes after App
- How can I implement password recovery in an iPhone
- State preservation and restoration strategies with
- “Zero out” sensitive String data in Swift
相关文章
- 现在使用swift开发ios应用好还是swift?
- UITableView dragging distance with UIRefreshContro
- TCC __TCCAccessRequest_block_invoke
- Where does a host app handle NSExtensionContext#co
- xcode 4 garbage collection removed?
- Unable to process app at this time due to a genera
- Swift - hide pickerView after value selected
- How can I add media attachments to my push notific
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