Jump to content

KingRalph

Senior Member
  • Posts

    1,300
  • Joined

  • Last visited

Everything posted by KingRalph

  1. Toucharcade? Ewww...Techrax I'm not following that twat
  2. http://iosgods.com/topic/16580-✯tutorial-making-a-simple-yet-effective-tweak-from-flex-2015✯/
  3. Hmm...?
  4. %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
  5. JailBreak and pirate it
  6. It's an error caused by xmod games. Uninstall XmodGames and contact them about it.
  7. Why would you update to ios 9
  8. Screen shot it
  9. Depends on what the app does and how much money you are willing to spend on the app.
  10. Hook this bundle: com.apple.UIKit All applications use it and will be hooked
  11. Post your source or we cannot help you
  12. 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
  13. 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
  14. 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
  15. No problem!
  16. Tell him what you told us in your support topic.
  17. I have three words for you: POST YOUR CODE
  18. ???? illuminati confirmed
  19. 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
  20. How do you expect to get help without posting your code
×
  • 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