---
title: "finishLoading(with:data:redirect:)"
framework: avfoundation
role: symbol
role_heading: Instance Method
path: "avfoundation/avassetresourceloadingrequest/finishloading(with:data:redirect:)"
---

# finishLoading(with:data:redirect:)

Causes the receiver to finish loading a resource for which a resource loader’s delegate took responsibility .

## Declaration

```swift
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 doc://com.apple.avfoundation/documentation/AVFoundation/AVAssetResourceLoadingRequest/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 doc://com.apple.documentation/documentation/Foundation/NSURLRequest object. If you are handling the request and not redirecting it, specify nil.

## Discussion

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.

## See Also

### Reporting the result of the request

- [response](avfoundation/avassetresourceloadingrequest/response.md)
- [finishLoading()](avfoundation/avassetresourceloadingrequest/finishloading().md)
- [isCancelled](avfoundation/avassetresourceloadingrequest/iscancelled.md)
- [finishLoading(with:)](avfoundation/avassetresourceloadingrequest/finishloading(with:).md)
- [isFinished](avfoundation/avassetresourceloadingrequest/isfinished.md)
