Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have lost an iPhone/iPad app due to a hard disk failure and I am trying to recover my code. I have found that I still have the app in the simulator, so I have been able to recover all the resources from the ipa's simulator file (as they are not encrypted). That is great. But the code is compiled (I think its an Intel binary file) so ... is it completely impossible to extract something readable from this kind of file?

Please note: I am not talking about decrypt/decompile an ipa file from the Apple store or somewhere else. It's from the simulator.

I think it's impossible, but who knows!

Thanks in advance.

share|improve this question

4 Answers

up vote 2 down vote accepted

No that's not possible. Your source code is gone. You can find some recovery software that tries to restore deleted files. If you have used any source control management like CVS, SVN, Mercurial or GIT that would have saved you. Anyway Lesson learnt from this donot rely on your local harddisk for backup.

share|improve this answer
Thanks. I supposed that, but I needed a more expert opinion. The hard disk is unrecoverable. That's why I am trying this such things :( – Jorge Oct 14 '11 at 11:42

You might be able to salvage the overall structure of your code by using class-dump on the executable binary.

It will not recover all the code, but should be able to recover all the class definitions. That is, if you have not stripped your binary from debug symbols.

Regarding the harddisk being unrecoverable I guess it all depends on how much money you are willing to spend on it. There are companies that specialize in recovering data from crashed disks, and to my best of knowledge they are able to recover practically any type of disk failure. The question is whether you are ready to pay that price, or if it would be cheaper to just reimplement the code.

share|improve this answer

It is only way,if u can recover your hard disk.

you can not get data from .Ipa file.

share|improve this answer
Well, actually I could extract all the resources from the ipa file, because those are not encrypted in the simulator, but not the code. Thanks anyway. – Jorge Oct 14 '11 at 11:46
Ya,you can get only data not coding files. – Dhaval Oct 14 '11 at 11:52

Change the .ipa suffix to .zip... uncompress. Inside you'll find the Payload folder containing an app. Open that app package and there are your files.

Works on a Mac. Not sure about Windows.

share|improve this answer
   
why the down vote? This works. – Scott Mar 9 at 3:41
It does, but sadly it doesn't decompile the actual binary executable inside of the ipa bundle. I think that's what the OP was asking for. – Ben Kreeger May 3 at 17:06

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.