seek(to:completionHandler:)
Sets the current playback time to the specified time.
Declaration
nonisolated func seek(to time: CMTime, completionHandler: (@Sendable (Bool) -> Void)? = nil)nonisolated func seek(to time: CMTime) async -> BoolParameters
- time:
The time to which to seek.
- completionHandler:
The block to invoke when the seek operation has either been completed or been interrupted. The block takes one argument:
- finished
Indicates whether the seek operation completed.
Discussion
Use this method to seek to a specified time in the player item and be notified when the operation completes. If the seek request completes without being interrupted (either by another seek request or by any other operation), the completion handler you provide is executed with the finished parameter set to true.
If another seek request is already in progress when you call this method, the completion handler for the in-progress seek request is executed immediately with the finished parameter set to false.