captureScenario:didFinishWithResult: method of the AUIMultiPageImageCaptureScenarioDelegate protocol
Notifies the delegate that the images were captured successfully and user pressed "Done" button.
- (void)captureScenario:(AUIMultiPageImageCaptureScenario*)captureScenario
didFinishWithResult:(id<AUIMultiImageCaptureResult>)result;
Parameters
- captureScenario
- AUIMultiPageImageCaptureScenario object, corresponding to the AUIMultiPageImageCaptureScenarioDelegate delegate that should be notified.
- result
- The captured images as an AUIMultiPageImageCaptureResult 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.
3/2/2022 12:59:15 PM