<!--
{
  "availability" : [
    "iOS: 11.0.0 -",
    "iPadOS: 11.0.0 -",
    "macCatalyst: 13.1.0 -",
    "tvOS: 11.0.0 -",
    "visionOS: 1.0.0 -"
  ],
  "documentType" : "symbol",
  "framework" : "AVKit",
  "identifier" : "/documentation/AVKit/AVPlayerViewController/requiresLinearPlayback",
  "metadataVersion" : "0.1.0",
  "role" : "Instance Property",
  "symbol" : {
    "kind" : "Instance Property",
    "modules" : [
      "AVKit"
    ],
    "preciseIdentifier" : "c:objc(cs)AVPlayerViewController(py)requiresLinearPlayback"
  },
  "title" : "requiresLinearPlayback"
}
-->

# requiresLinearPlayback

A Boolean value that determines whether the player allows the user to skip media content.

```
var requiresLinearPlayback: Bool { get set }
```

## Discussion

If this value is `false` (the default), the controller’s user interface allows a user to fast-forward, scrub, or skip ahead to content later in the player’s presentation. To prevent the user from skipping content—for example, while presenting a legal notice or other mandatory interstitial content—set this property’s value to `true`.

To track when the player is presenting content for which you might require linear playback, use the <doc://com.apple.documentation/documentation/AVFoundation/AVPlayerItem/interstitialTimeRanges> property of the view controller’s player item to define the time ranges of the interstitial content. The view controller then sends [`playerViewController(_:willPresent:)`](/documentation/AVKit/AVPlayerViewControllerDelegate/playerViewController(_:willPresent:)) and [`playerViewController(_:didPresent:)`](/documentation/AVKit/AVPlayerViewControllerDelegate/playerViewController(_:didPresent:)) messages to its [`delegate`](/documentation/AVKit/AVPlayerViewController/delegate) object when the content is playing. Implement these methods to enable or disable the [`requiresLinearPlayback`](/documentation/AVKit/AVPlayerViewController/requiresLinearPlayback) property as needed.

---

Copyright &copy; 2026 Apple Inc. All rights reserved. | [Terms of Use](https://www.apple.com/legal/internet-services/terms/site.html) | [Privacy Policy](https://www.apple.com/privacy/privacy-policy)