Jump to content

Crypto

Senior Member
  • Posts

    3,170
  • Joined

  • Last visited

Everything posted by Crypto

  1. It might not be an include / header problem. I think you might be missing your UIkit Framework from CydiaSubstrate.h Navigate to /Library/Frameworks/CydiaSubstrate.framework/headers. Is there a file inside called CydiaSubstrate.h? If not, download it and put it inside. That's probably why you can't compile the tweak.
  2. No, if it's locked with iCloud, you won't be able to open the device ever if you make a hard recovery using DFU mode. Try to not be a thief and give it to the person who lost it.
  3. Look at the cellular provider ( exemple : AT&T ) and give it to them. They'll be able to locate the owner.
  4. ^^^ Next time screenshot your errors. This could have been solved faster
  5. Than mark a reply as "answered" so it doesn't happen again
  6. Are you sure it's in the right folder? Also, don't forget the "/" before "var" when you're writing /var/theos/bin/nic.pl in theos
  7. Look at the bottom of your tweak, you have 2 methods called ( rimXVelocity ). Remove one and compile again.
  8. Doesn't work anymore
  9. You can't. But you can use the keychain method and redownload the app again to make a new account. Pretty much
  10. Download it from the official repo
  11. Best thing to do is bring it to the apple store so they can give it back to the person that lost the iPhone.
  12. Remove #include <Foundation/Foundation.h> from your tweak.xm and add #import <UIKit/UIKit.h> on top of your tweak.xm
  13. Well if you're not using it on yourself, it's illegal
  14. I have a feeling you're missing alot of things. You haven't read the tutorials properly and you're trying to copy the code from the guy in the video and haven't tried learning how to code first that's not how you should start lol ----- What does your makefile look like?
  15. I don't have a link, I downloaded them manually one by one but I'm pretty sure you can find them on the forum
  16. Add this on top #include <Foundation/Foundation.h> Btw, do you have all the headers you need?
  17. Lol, this should work : %hook SBIconController -(void)iconTapped:(id)fp8{ %orig; UIAlertView *alert = [[uIAlertView alloc]initWithTitle:@"Welcome to this app!" message:@"⚡️I hope you enjoy ⚡️" delegate:self cancelButtonTitle:@"I will!" otherButtonTitles:@"I won't", nil]; [alert show]; } %end
  18. try this %hook SBIconController -(void)iconTapped:(id)fp8{ %orig; UIAlertView *alert = [[uIAlertView alloc]initWithTitle:@"Welcome to this app!" message:@"⚡️I hope you enjoy ⚡️" delegate:self cancelButtonTitle:@"I will!" otherButtonTitles:@"I won't" [alert show]; } %end
  19. ^
  20. Look at how he wrote his code and how you wrote yours. Why are you asking for help when you're copying his code and didn't copy it right?
×
  • 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