captureScenario:didFailWithError:result: of the AUIMultiPageImageCaptureScenarioDelegate protocol
Notifies the delegate that an error has occurred.
- (void)captureScenario:(AUIMultiPageImageCaptureScenario*)captureScenario
didFailWithError:(NSError*)error
result:(id<AUIMultiImageCaptureResult>)result;
Parameters
- captureScenario
- AUIMultiPageImageCaptureScenario object, corresponding to the AUIMultiPageImageCaptureScenarioDelegate delegate that should be notified.
- error
- The error that has occurred.
- result
- If any images were captured, they are stored in the AUIMultiPageImageCaptureResult result object.
Note: In case you do not want to save images in the storage after stopped or failed scenario, you can remove the images from the storage, using clearWithError: method.
02.03.2022 12:59:15