Any good iOSOpenDev code / reference examples?

I had experience developing applications for iOS and am currently working on an idea that I used to configure Cydia. Twing will work with the action menu, adding a new button to the menu and presenting the interface when the button is pressed.

I am trying to do this using an action menu template on iOSOpenDev. I am currently installing iOSOpenDev and have created a new project using the action menu template. However, I do not know how to do this after that.

I am looking for a few code examples or reference materials on how to create tricks using iOSOpenDev, but so far I have not even found one sample project. Is there any good up-to-date documentation or tutorials on how to use iOSOpenDev to create Cydia settings?

+5
source share
1 answer

Code example:

And here is what you need to do after writing all the code:

  • I do not use iOSOpenDev, but if I remember correctly, it packs your setup into a Debian package file. If so, you simply copy this file to your device, install it (possibly with dpkg -i <filename.deb>) and restart SpringBoard.

  • If not, then you just take the resulting files .dyliband .plistcopy them to the device in the directory /Library/MobileSubstrate/DynamicLibraries, and again you cancel.

+2
source

All Articles