AVPlayer seek vs AVPlayerItem seek

324 Views Asked by At

Which one is more accurate?

func seek(to time: CMTime, 
          toleranceBefore: CMTime, 
          toleranceAfter: CMTime, 
          completionHandler: @escaping (Bool) -> Void)
func seek(to time: CMTime, 
          toleranceBefore: CMTime, 
          toleranceAfter: CMTime, 
          completionHandler: ((Bool) -> Void)? = nil)
0

There are 0 best solutions below