I have successfully set up a delegate in my NSObject class and I'm able to transfer some data and run some selectors.
The thing is, I can't understand how do I send some values back to that class where I've set up my delegate. I have a ViewController, SGDownloader that has a BOOL property and I want to check it on the delegate class to make a conditional firing of some selector. The thing is, I can't seem to make it work. I'm using storyboards and here's my code:
-(void)checkTheQueue {
SGDownloader *downloaderInstance = [SGDownloader new];
NSLog((@"Downloader is now %i"), downloaderInstance.isBusy);
BOOL checkBool = downloaderInstance.isBusy;
if (checkBool == NO) {
SEL selector = @selector(checkTheThing);
if (delegate && [delegate respondsToSelector:selector]) {
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Warc-performSelector-leaks"
[delegate performSelector:selector];
#pragma clang diagnostic pop
}
}
else {
NSLog(@"Sorry, I'm busy");
}
}
I fire the selector checkTheThing in my first class, the class I'd like to get the isBusy value from. It's also an @optional delegate method.
The thing is, that the BOOL value is always 0, and if I try to pass a string it's always nil.
I suspect there's a problem with this line - SGDownloader *downloaderInstance = [SGDownloader new]; maybe the storyboard get's mixed up or something like that.
Edit:
Part of the code from SGDownloader:
- (IBAction)attemptNewDownload:(id)sender {
SGQueueController *myProtocol = [SGQueueController new];
myProtocol.delegate = self;
NSLog((@"Busy value equals %i while checking the protocol"), isBusy);
[myProtocol checkTheQueue];
}
Here NSLog tells me that the value is 1. Seconds later it's 0 on my protocol class. Although nothing is done with it later on.
BOOLvalue from" "if I try to pass a string it's alwaysnil" What is the signature of the method you're trying to call? How do you pass a string, and where are you expecting to get aBOOLresult? (Also, it's considered bad form to callnewinstead ofalloc/init. It obscures the default initializer in case it isn'tinit.) – rsswtmr Dec 19 '12 at 12:43isBusytoYESinViewDidLoadand I just want to pass this value to the delegate. I've tried substituting value with a string but the result was the same so I deleted that part of the code. I'm evaluating theBOOLresult right in thecheckTheQueuemethod as you can see and this method is fired AFTER I set myBOOLvalue. No matter what I use (alloc/initornew) the result is the same. – SergiusGee Dec 19 '12 at 12:47SGDownloaderwork? Re: what Johan said, if you create one at the head of the method, there's no chance for yourviewDidLoadcode to set the busy flag before you check it. – rsswtmr Dec 19 '12 at 12:54