I'm trying without success to patch iPhone calculator to replace the + function with the - function. I do some stuff but when I try to launch it from my iPhone it crashes.

What I do is:

  1. Opening the .app file and looking for the file that contain the code.
  2. Do my work: patch it and then reload it into the phone.
  3. I open calculator.app and copy my executable file in that "folder".

But it does not work and my app crashes.

I try also to rename only some string (basic patch) but the result is always the same. My App always crashes. I think that my method is not correct.

What is my error?

link|improve this question

67% accept rate
don't forget about code signing – Andrey Z. Jan 19 at 11:17
Mmm maybe this is the cause of my problem! What I must do? – Usi Usi Jan 19 at 17:11
are you working on a jailbroken device? – kuba Jan 25 at 14:30
yes! I'm working on a jailbroken device, any helps? any tutorial that you can suggest to me? – Usi Usi Jan 26 at 21:37
feedback

1 Answer

after you edit the binary, you need to sign it with ldid or ldone. I prefer ldone.

To get ldone, add http://cydia.hackulo.us to your sources and install ldone from that source.

Then with command/ssh run:

ldone /Directory/of/binary -s

then chmod to binary to 0775 and app should open.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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