Is it possible to invoke a block within another block?
For example:
-(void)doSomethingWithBlock:(void (^)(id))parameterBlock{
Blah * object = [Blah doThisblock:^(id sender) {
//invoke "parameterBlock" here..
// do other things after as well..
}
}
If possible, how would I go about doing it?