finishLoading(with:data:redirect:)
Causes the receiver to finish loading a resource for which a resource loader’s delegate took responsibility .
Declaration
func finishLoading(with response: URLResponse?, data: Data?, redirect: URLRequest?)Parameters
- response:
The response object for the requested resource. Use the request object in the receiver’s Request property to get information about the requested resource.
- data:
The data of the resource. If no data is available, specify
nil. - redirect:
When redirecting a resource request, use this parameter to specify the corresponding Nsurlrequest object. If you are handling the request and not redirecting it, specify
nil.
Discussion
When a resource loader’s delegate takes responsibility for loading a resource, it calls this method to indicate that the resource was loaded successfully. This method marks the loading request as finished and returns the provided data back to the resource loader object for processing.