Jump to content

niro

Senior Member
  • Posts

    372
  • Joined

  • Last visited

Everything posted by niro

  1. Hey trying to include all the springboard apps in a custom preference bundle I'm making how would I do that?
  2. https://gyazo.com/697ffc462b8cddc2b966b7e3c4e17b0c Hey, so I am trying to make (NSString *)groups equal all of the strings in the picture, but for some reason it only recognizes one, ive tried doing @"", @"", @"" etc etc, but i get an unused @ error, so, how would i make it equal all of those strings :? sorry for the confusing question, but i was thinking of making an array?
  3. do you mind writing up an example? Im not sure where I would place [self setBackgroundColor:[UIColor colorWithRed:0.157 green:0.157 blue:0.157 alpha:1]]; sorry for so many questions
  4. Would I still do @@Interface? As well as { - (void)setBackgroundColor:(UIColor *)color color = kDarkColor; return %orig; } And thank you
  5. So I'm trying to set the background color of a subclass (I think it's called) and it won't work I have tried @interface BLAH BLAG BLAG : UIView But that won't work I'm not trying to change the WHOLE UIView class just the one in the photo Can someone please explain this? photo ~> http://m.imgur.com/UgtSP9U
  6. Hey I have been trying to make more tweaks for other apps and I get this error when I try to compile I am trying to change the background color of the app so most of my tweak.xm is { - (void)setBackgroundColor:(UICololr *)color color = kdarkcolor; return %orig; } picture of error http://imgur.com/Fl4LMzJ
  7. sooo Depends: mobilesubsrate libcolorpicker or would i need to comma it? Depends: mobilesubsrate , libcolorpicker
  8. Title sounds confusing, I know and im sorry! But with the latest version of my tweak I need the user to have "libcolorpicker" downloaded from cydia, how do I include it automatically so it force downloads it upon installing/updating my tweak?
  9. wow! nice website ! rekO!
  10. I am in !
  11. famousgram is dead , well somewhat! you can use getlikes! if you buy VIP I have an exploit in the VIP Section!
  12. Yeah sign in first on iPhone or register it through burp and the requests I've included
  13. before bashing it, i suggest you try it
  14. Hey guys! I found a way to get free followers on some ios apps ! The apps in question are get followers pro and get likes pro, my "friend" is now selling my method! So I am making it public! enjoy! Use the ViP Topic to get unlimited likes & followers. http://iosgods.com/topic/14086-ncloud-exploit-site-d-social-media-instagram-likes-follower-more/
  15. Testing this thank you for sharing OP
  16. Sweet I'll try that! What if the character is non ACSII? I try saving and compiling with atom and theos and I get the error along the lines of "non ACSII Character's not allowed"
  17. Hey so I'm trying to fix an issue with lag for Kik but can't seem to figure it out, I'm trying to block all mom acsii characters but it only works if I have the literal string of characters and as "lag codes" come out everyday for Kik that's difficult so if possible, I want to block every message that has that certain character in it.. So an example would be %hook HybridSmileyLabel - (void)setText(id)arg1 { [arg1 ifStringisEqualTo : @"a"] arg1 = @"SPAM"; return %orig; } %end So I know the signs aren't in the right places but that should be give a clear example Now what I want is everything with "a" in it to be blocked so - (void)setText(id)arg1 { [arg1 ifStringisEqualTo : @"abcedfg"] arg1 = @"SPAM"; return %orig; } %end I want that to be blocked as well since it has the character "a" in it, hopefully that explains it ? Thank you
  18. unlock them and then restart kik
  19. //code// @interface SettingsOptionBase : NSObject @property(nonatomic, retain) NSString *optionKey; @property(nonatomic, retain) KESettingsViewController *KEManager; @end @interface SettingsOptionLabel : SettingsOptionBase - (id)initWithHeight:(double)arg1 text:(id)arg2; @end //code// %subclass KESettingsViewController : SettingsPane - (void)loadView { %orig; UIViewController *con = self.navigationController.previousViewController; if ([con isKindOfClass:%c(ProfileChatInfoViewController)]) { ProfileChatInfoViewController *profVC = (ProfileChatInfoViewController *)con; self.username = profVC.user.username; } } - (void)viewDidLoad { %orig; self.title = @"K8 Settings"; } %new - (NSString *)username { return objc_getAssociatedObject(self, @selector(username)); } %new - (void)setUsername:(NSString *)value { objc_setAssociatedObject(self, @selector(username), value, OBJC_ASSOCIATION_RETAIN_NONATOMIC); } %new - (void)saveOption:(NSObject *)obj forKey:(NSString *)key { saveOptionForKey(obj, key, self.username); [self reloadSettingsOptions]; } %new - (NSObject *)getOptionForKey:(NSString *)key { return getOptionForKey(key, self.username); } - (id)initWithCore:(id)core { self = %orig; self.username = kGlobalUser; // [self setup]; return self; } %new - (NSArray *)generateSettingsOptions { NSArray *newArr = @[ ]; NSMutableArray *mutableNewArr = [NSMutableArray arrayWithArray:newArr]; if (![self.username isEqualToString:kGlobalUser]) // not global { //code// } if ([self.username isEqualToString:kGlobalUser]) // global only { //code// [mutableNewArr addObject:[[[%c(SettingsOptionLabel) alloc] initWithHeight:90 text: @"test"] autorelease], } // [newArr addObject:[[%c(SettingsOptionSubPane) alloc] initWithTitle:@"Kik8 Options" iconImage:nil subPaneClass:%c(KESettingsViewController)]]; return (NSArray *)mutableNewArr; } %new - (void)dealloc { // [self.tableView release]; [self.username release]; // [super dealloc]; } %end
  20. I think I did viewDidLoad and i put the UIabel in an NSArray so it was -(NSArray *)generateSettingsOption BLAH BLAH UI LABEL
  21. hey! so recenlty ive ran into a problem, im trying to add UILabels, and ive been adding them with addObject:BLAH BLAH BLAH, well it works on idevices newer than the iphone 5s but everything under crashes instantly! If anyone might know what the problem is off top of their head that would be sweet if not i can post the code thanks skype - @kekigotrekt kik - @a3t or just respond here
  22. swipe left and right when you are holding the smiley
  23. Sure does adding a log out option today
×
  • 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