session(_:didFinish:error:)
Tells the delegate that a file transfer has finished successfully or ended because of an error.
Declaration
optional func session(_ session: WCSession, didFinish fileTransfer: WCSessionFileTransfer, error: (any Error)?)Parameters
- session:
The session object of the current process.
- fileTransfer:
An object containing information about the file that was transferred.
- error:
An error object if a problem occurred.
Discussion
The session object calls this method when a file transfer initiated by the current app finished, either successfully or unsuccessfully. Use this method to note that the transfer completed or to respond to errors, perhaps by trying to send the file again at a later time.
This method is called on a background thread of your app.