问题描述
我有一个解密的 IPA 文件.如何使用Xcode打开此文件的内容并对其进行代码修改?
I have a decrypted IPA file. How do I use Xcode to open the contents of this file and make code modifications to it?
推荐答案
IPA只是一个包含有效载荷"文件夹的zip文件,而该文件夹又包含应用程序捆绑包.因此,IPA中没有代码-只有编译的可执行文件.您可以将其解压缩并查看有效载荷"文件夹,但您将看到的只是可执行代码.您可能会反汇编代码(不要问我-我从未尝试过这种事情),但是如果您需要这样做,我想知道为什么您一开始就无法访问源代码...
An IPA is just a zip file containing a "Payload" folder, which in turn contains the app bundle. As such there is no code in an IPA - just the compiled executable. You can unzip it and look in the "Payload" folder, but all you'll see is executable code. You could possibly disassemble the code (don't ask me how - I've never tried such a thing), but if you need to do that I wonder why you don't have access to the source in the first place...
这篇关于如何使用Xcode打开解密的IPA内容的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!