简体   繁体   中英

Disable all gestures when work rotation gesture Swift

How can I disable pinch and pan gestures when rotate UIImage in swift

for single gesture in uiView

yourgesture.isEnabled = false

for multiple gestures in uiView

for l in 0..<view.gestureRecognizers.count {
   view.gestureRecognizers![l].isEnabled = false
}

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM