Hey guys, im having trouble with this method im trying to use on my tweak.
Im not too familiar with modifying multiple arguments of a method.
Here is the method:
- (void)postFollowResult:(BOOL)aid:(id)followID:(id)error:(id)argument {
aid = true;
}
%end
Okay, I need to make the (BOOL) Statement true, so i tried to do "aid = true;" but that did not work. It seems to not have made it true for some reason.
I first created this hack in Flex, and it worked flawlessly, but for some reason the exact same coding isn't working for my tweak.
Can someone please help me out with this method plz?