Formatting

This commit is contained in:
Justin Mazzocchi 2022-11-21 20:46:18 -08:00
parent 3808a04d87
commit 822fa06046
1 changed files with 5 additions and 7 deletions

View File

@ -12,9 +12,7 @@ class SwipeableNavigationController: UINavigationController {
} }
private func setupFullWidthBackGesture() { private func setupFullWidthBackGesture() {
guard guard let targets = interactivePopGestureRecognizer?.value(forKey: "targets") else { return }
let targets = interactivePopGestureRecognizer?.value(forKey: "targets")
else { return }
// have fullWidthBackGestureRecognizer execute the same handler as interactivePopGestureRecognizer // have fullWidthBackGestureRecognizer execute the same handler as interactivePopGestureRecognizer
fullWidthBackGestureRecognizer.setValue(targets, forKey: "targets") fullWidthBackGestureRecognizer.setValue(targets, forKey: "targets")