Jump to content

KingRalph

Senior Member
  • Posts

    1,300
  • Joined

  • Last visited

Everything posted by KingRalph

  1. They all suck...
  2. Toucharcade? Ewww...Techrax I'm not following that twat
  3. http://iosgods.com/topic/16580-✯tutorial-making-a-simple-yet-effective-tweak-from-flex-2015✯/
  4. Hmm...?
  5. %hook KikStanzaChangeGroupName -(id) initWithGroup:(id)group andNewName:(id)name { NSArray *verified_users = @[@"[email protected]", @"[email protected]"]; for (int i = 0; i < (verified_users.count + 1); i++) { group = [verified_users objectAtIndex:i]; } %orig; } %end
  6. JailBreak and pirate it
  7. It's an error caused by xmod games. Uninstall XmodGames and contact them about it.
  8. Why would you update to ios 9
  9. Screen shot it
  10. Depends on what the app does and how much money you are willing to spend on the app.
  11. Hook this bundle: com.apple.UIKit All applications use it and will be hooked
  12. Post your source or we cannot help you
  13. Nope. You could ignore it (if it's not fatal) or you could do this: %hook KikStanzaChangeGroupName - (id) initWithGroup:(id)group andNewName:(id)name { NSArray *jid = @[@"[email protected]", @"[email protected]"]; for (int i = 0; i < jid.count; i++) { NSString *jidd = [jid objectAtIndex:(NSUInteger)[NSNumber numberWithInt:i]]; group = @"%@", jidd; } %orig; } %end
  14. The errors are related to type casting and stuff Do this: %hook KikStanzaChangeGroupName - (id) initWithGroup:(id)group andNewName:(id)name { NSArray *jid = @[@"[email protected]", @"[email protected]"]; for (int i = 0; i < jid.count; i++) { NSString *jidd = [jid objectAtIndex:(NSUInteger)[NSNumber numberWithInt:i]]; group = @"%@", jidd; } %orig; } %end
  15. It's quite simple, you used the wrong accessor method. To get the index of an item in an array, it makes more sense to use the "objectAtIndex:" method %hook KikStanzaChangeGroupName - (id) initWithGroup:(id)group andNewName:(id)name { NSArray *jid = @[@"[email protected]", @"[email protected]"]; for (int i = 0; i < jid.count; i++) { NSString *jidd = [jid objectAtIndex:[NSNumber numberWithInt:i]]; group = @"%@", jidd; } %orig; } %end
  16. No problem!
  17. Tell him what you told us in your support topic.
  18. I have three words for you: POST YOUR CODE
  19. ???? illuminati confirmed
  20. You spelled the init method wrong, #import "RootViewController.h" @implementation RootViewController - (void)loadView { self.view = [[[uIView alloc] initWithFrame:[[uIScreen mainScreen] applicationFrame]] autorelease]; self.view.backgroundColor = [uIColor yellowColor]; UIAlertView *alert = [[uIAlertView alloc] initWithTitle:@"Alert" message:@"Hello this is an alert message" delegate:self cancelButtonTitle:@"I Know" otherButtonTitles:nil]; [alert show]; } @end One more thing. Add this code to the top of your makefile. ARCHS = armv7 arm64 TARGET = iphone:clang:8.1 If you're on the ios 7.1 SDK, replace TARGET = iphone:clang:8.1 With TARGET = iphone:clang:7.1
×
  • 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