Decompile iPhone app binary

后端 未结 4 647
伪装坚强ぢ
伪装坚强ぢ 2020-12-08 21:17

Is there a way to decompile an iPhone binary file in order to extract it\'s resources like images and sound files?

相关标签:
4条回答
  • 2020-12-08 21:39

    Change your .app file extension to zip and then extract the files. You will be able to get all resource files.

    0 讨论(0)
  • 2020-12-08 21:43

    Edit: Removed the assumption that images/sound would be used in another application.

    First, off you shouldn't be reverse compiling code so that you can get images/sound files from an iPhone or any other application for that matter.

    Second, reverse compiling does not always guarantee a successful file generation of whatever file you're looking for. Whether it's an audio or image file.

    It would be a much better approach for you in the long run, and in the process of learning that you either contact the authors of the app and ask for permission to use the images/audio that you're seeking (since you think it's such an awesome sound/image that you can't live without). Or you can do an audio mixing or image generation yourself.

    If your lacking the time, skills or applications that would get you the quality of work you're looking for. I would recommend bring in a graphic artist or sound engineer/mixer.

    You'd be learning how to manage a group or individual, convey your ideas correctly and informative, and you're more likely to build a better application as a result. And that is something you can't get from reverse compiling an iPhone application :-)

    0 讨论(0)
  • 2020-12-08 21:44

    If you have sync the app to you Mac, just open the following folder:

    /Users/YOUR_USER_NAME/Music/iTunes/iTunes Media/Mobile Applications
    

    Or open iTunes and go to Apps and right mouse button on the app and select "show in Finder"

    1. Copy the app you want to inspect, f.e. Demo.ipa
    2. Change the extension ipa to zip => Demo.zip
    3. Extract the zip
    4. Open the folder and then the folder "Payload"
    5. Right Mouse Click Demo.app and select "Show Package Content"
    0 讨论(0)
  • 2020-12-08 21:48

    An iPhone .app file is simply a folder. If you're viewing it on a Mac (or even on the iPhone with iFile), just remove the .app extension and you should be able to view the resources. On Windows and Linux (tested with Ubuntu 14.04), it should "just work" and you'll be able to view the folder's contents without any renaming.

    0 讨论(0)
提交回复
热议问题