Jump to content

KingRalph

Senior Member
  • Posts

    1,300
  • Joined

  • Last visited

Everything posted by KingRalph

  1. Hmm...?
  2. %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
  3. JailBreak and pirate it
  4. It's an error caused by xmod games. Uninstall XmodGames and contact them about it.
  5. Why would you update to ios 9
  6. Screen shot it
  7. Depends on what the app does and how much money you are willing to spend on the app.
  8. Hook this bundle: com.apple.UIKit All applications use it and will be hooked
  9. Post your source or we cannot help you
  10. 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
  11. 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
  12. 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
  13. No problem!
  14. Tell him what you told us in your support topic.
  15. I have three words for you: POST YOUR CODE
  16. ???? illuminati confirmed
  17. 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
  18. How do you expect to get help without posting your code
  19. Your syntax is messed up. #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 cancleButtonTitle:@"I Know" otherButtonTitles:nil]; [alert show]; } @end
  20. Post your tweak.xm
  21. The author is IanouarSend him a PM
  22. It's the author's mistake. The pre installation script was configured wrong. He/She probably misspelt the binary name. Contact the author.
×
  • 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