Reputation: 77
I am Using AVPlayer to play Video files in ios swift. The requirement is, I want to disable fast forward for certain users. is this achievable? Please let me know is any alternative or is there some method to disable it in swift
Upvotes: 2
Views: 2515
Reputation: 3085
Use
self.playerController.setValue(true, forKey: "requiresLinearPlayback")
Upvotes: 2