I'm using blocks to update my collection view when results are coming back. But i only want to block to be executed if shouldLoadMoreResults is YES
I am changing him from another method to NO but no matter what he is always on YES.
I'm assuming that the block captures the state, what am i doing wrong ?
-(void) getMoreResults
{ self.shouldLoadMoreResults = YES;
[searchRequest startSearchWithComplition:^{
if (self.shouldLoadMoreResults)
{
...
}