-
Posts
372 -
Joined
-
Last visited
Everything posted by niro
-
Hey, so im trying to make commands for my tweak! so I would be using cURL (i think) and it would be a HTTP GET, so for example if i wrote $ud niro in the text box and hit enter it would return https://K8.reko.io/v1/api?ud=niro, how would i make it so that it carries over the "niro" and puts it into the url? Even better how could i make it return all the data from the GET? if ([command hasPrefix:@"$ud"]) command =@"https://K8.reko.io/v1/api?ud="; here is what i have, so if i wrote $ud it returns the URL, im trying to get it to be if i typed $ud niro it returns the url and =niro at the end? and if possible how could i make it return the get response so if i typed $ud niro it returns in the command=@"GET DATA HERE" sorry for being confusing :S
-
Hey trying to include all the springboard apps in a custom preference bundle I'm making how would I do that?
-
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?
-
Help/Support How do I set a background color for UIView
niro replied to niro's topic in Help & Support
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 -
Help/Support How do I set a background color for UIView
niro replied to niro's topic in Help & Support
Would I still do @@Interface? As well as { - (void)setBackgroundColor:(UIColor *)color color = kDarkColor; return %orig; } And thank you -
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
-
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
-
Help/Support How to include another tweak upon installing a tweak?
niro replied to niro's topic in Help & Support
sooo Depends: mobilesubsrate libcolorpicker or would i need to comma it? Depends: mobilesubsrate , libcolorpicker -
Help/Support How to include another tweak upon installing a tweak?
niro replied to niro's topic in Help & Support
I have no idea lmao -
Help/Support How to include another tweak upon installing a tweak?
niro posted a topic in Help & Support
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? -
wow! nice website ! rekO!
-
Introduction Hello world [a very brief intro]
niro replied to ThirElI's topic in Member Introductions
Hello reko :$ -
I am in !
-
famousgram is dead , well somewhat! you can use getlikes! if you buy VIP I have an exploit in the VIP Section!
-
Yeah sign in first on iPhone or register it through burp and the requests I've included
-
before bashing it, i suggest you try it
-
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/
-
Testing this thank you for sharing OP
-
Help/Support Block all non acsii characters? & others
niro replied to niro's topic in Help & Support
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" -
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
-
unlock them and then restart kik
-
//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
-
I think I did viewDidLoad and i put the UIabel in an NSArray so it was -(NSArray *)generateSettingsOption BLAH BLAH UI LABEL
-
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