iOS 11 AVPlayerViewController Disable Pinch / Drag Gesture
问题 I have an AVPlayerViewController setup to play a video and them I am in-bedding the VC's view in a custom view controller. But if they user tries they can move the video around by 2 finger grabbing. How do I disable this? Thanks! See Below: 回答1: Try something like this before start playing video var positions = [Int]() for (idx, recognizer) in (playerVC.view.subviews[0].gestureRecognizers?.enumerated())! { if recognizer is UIPinchGestureRecognizer || recognizer is UIPanGestureRecognizer {