The topic says it all. I've got a .app file here, but the Xcode project is no longer available to me. Is there any way to take the .app file and reverse engineer an Xcode project from it so I can view the code used to make it?
|
|
|||||
|
|
By design this cannot be done. The best you can do is run the app and try to reverse engineer it based on functionality. Stealing the source code is a no-no (and not just because Apple says so). |
|||
|
|
|
It would be very very difficult. There's no one click solution. However, you could look at class-dump and otool. Just be aware that it's a very manual effort, you'll still be piecing everything together yourself. |
|||
|
|
|
When you say "the Xcode project is no longer available to me" then I would assume you have written the code or at least have seen it. It will be definitely much faster to rewrite it than to try to decompile it. |
|||
|
|