문제

I want to know if I can check the code of an archive generated with Xcode for an IOS app.

EDIT:

I ask this because I need to verify a generated version of my project which was uploaded before to AppStore.

도움이 되었습니까?

해결책

No you can't. Since when you archive an app, you get an .ipa file, or a XCArchive.

.ipa files are already compiled, and XCArchives have your compiled app in it, so you can't easily get the code from it.

But what I've tried to do with my own application is use Hopper Dissambler: http://www.hopperapp.com. It attempts to create "pseudocode" (from the executable) so you can kinda read it easier.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top