I notice that in a GroupOperation, if you generate a new operation in the method
operationDidFinish(_ operation: Foundation.Operation, withErrors errors: [NSError])
using addOperation
the finished(_ errors: [NSError]) is not called
example: GroupOperation that contains OperationA & OperationB
when OperationB finish, you want to generate OperationC on a particular condition
OperationC will be execute successfully and the block observer will be called correctly, however the GroupOperation won't called it's finish method
Is that a bug ?
thanks
I notice that in a GroupOperation, if you generate a new operation in the method
operationDidFinish(_ operation: Foundation.Operation, withErrors errors: [NSError])using addOperation
the
finished(_ errors: [NSError])is not calledexample: GroupOperation that contains OperationA & OperationB
when OperationB finish, you want to generate OperationC on a particular condition
OperationC will be execute successfully and the block observer will be called correctly, however the GroupOperation won't called it's finish method
Is that a bug ?
thanks