ianb821 / IBActionSheet

Customizable iOS 7 style UIActionSheet
MIT License
307 stars 65 forks source link

Disable back swipe in iOS 7 when IBActionSheet is shown #16

Open rordulu opened 10 years ago

rordulu commented 10 years ago

IBActionSheet doesn't seem to disable the back-swipe of UINAvigationController of iOS7 when it's in the screen

krisanthony commented 9 years ago

This seems to work well - just add self.navigationController.interactivePopGestureRecognizer.enabled = NO; before showing the sheet, and then self.navigationController.interactivePopGestureRecognizer.enabled = YES; in the delegate method didDismissWithButtonIndex or willDismissWithButtonIndex