Jump to content

ddm500

Newbie
  • Posts

    1
  • Joined

  • Last visited

Everything posted by ddm500

  1. Code %hook SpringBoard -(void)applicationDidFinishLaunching:(id)arg1 { //not a real method its just kinda what i remember it looked like, should be in one of the tutorials you went through %orig;//tells that the method you hooked to continue running normally (we don't want to break anything) UIAlertController * alert= //blah blah find uialertcontrollercode online and paste your desired alert, [self presentViewController:alert animated:YES completion:nil]; //so it shows your alert code } %end //close up your hook Error is ==> Compiling Tweak.xm (arm64)… Tweak.xm:15:9: error: 'release' is unavailable: not available in automatic reference counting mode [alert release]; ^ /opt/theos/sdks/iPhoneOS9.3.sdk/usr/include/objc/NSObject.h:37:1: note: 'release' has been explicitly marked unavailable here - (oneway void)release OBJC_ARC_UNAVAILABLE; ^ Tweak.xm:15:9: error: ARC forbids explicit message send of 'release' [alert release]; ~~~~~ ^
×
  • Create New...

Important Information

We would like to place cookies on your device to help make this website better. The website cannot give you the best user experience without cookies. You can accept or decline our cookies. You may also adjust your cookie settings. Privacy Policy - Guidelines