finishedHandlingError(_:recovered:)
Tells UIKit that you finished handling the error.
Declaration
func finishedHandlingError(_ error: any Error, recovered: Bool)Parameters
Discussion
This method is called by default when handling of an error (including any user interaction) is complete. Subclasses need to call this method only if they override handleError(_:userInteractionPermitted:) and do not call the superclass implementation (super). If you override this method, you must call super.