mirror of https://github.com/oxen-io/session-ios
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
75 lines
2.3 KiB
Objective-C
75 lines
2.3 KiB
Objective-C
//
|
|
// Copyright (c) 2017 Open Whisper Systems. All rights reserved.
|
|
//
|
|
|
|
#import "OWSNavigationController.h"
|
|
|
|
// We use a category to expose UINavigationController's private
|
|
// UINavigationBarDelegate methods.
|
|
@interface UINavigationController (OWSNavigationController) <UINavigationBarDelegate>
|
|
|
|
@end
|
|
|
|
#pragma mark -
|
|
|
|
@interface OWSNavigationController () <UIGestureRecognizerDelegate>
|
|
|
|
@end
|
|
|
|
#pragma mark -
|
|
|
|
@implementation OWSNavigationController
|
|
|
|
- (void)viewDidLoad
|
|
{
|
|
[super viewDidLoad];
|
|
|
|
self.interactivePopGestureRecognizer.delegate = self;
|
|
}
|
|
|
|
#pragma mark - UINavigationBarDelegate
|
|
|
|
// All UINavigationController serve as the UINavigationBarDelegate for their navbar.
|
|
// We override shouldPopItem: in order to cancel some back button presses - for example,
|
|
// if a view has unsaved changes.
|
|
- (BOOL)navigationBar:(UINavigationBar *)navigationBar shouldPopItem:(UINavigationItem *)item
|
|
{
|
|
OWSAssert(self.interactivePopGestureRecognizer.delegate == self);
|
|
UIViewController *topViewController = self.topViewController;
|
|
|
|
BOOL wasBackButtonClicked = topViewController.navigationItem == item;
|
|
BOOL result = YES;
|
|
if (wasBackButtonClicked) {
|
|
if ([topViewController conformsToProtocol:@protocol(OWSNavigationView)]) {
|
|
id<OWSNavigationView> navigationView = (id<OWSNavigationView>)topViewController;
|
|
result = ![navigationView shouldCancelNavigationBack];
|
|
}
|
|
}
|
|
|
|
// If we're not going to cancel the pop/back, we need to call the super
|
|
// implementation since it has important side effects.
|
|
if (result) {
|
|
result = [super navigationBar:navigationBar shouldPopItem:item];
|
|
OWSAssert(result);
|
|
}
|
|
return result;
|
|
}
|
|
|
|
#pragma mark - UIGestureRecognizerDelegate
|
|
|
|
// We serve as the UIGestureRecognizerDelegate of the interactivePopGestureRecognizer
|
|
// in order to cancel some "back" gestures - for example,
|
|
// if a view has unsaved changes.
|
|
- (BOOL)gestureRecognizerShouldBegin:(UIGestureRecognizer *)gestureRecognizer
|
|
{
|
|
UIViewController *topViewController = self.topViewController;
|
|
if ([topViewController conformsToProtocol:@protocol(OWSNavigationView)]) {
|
|
id<OWSNavigationView> navigationView = (id<OWSNavigationView>)topViewController;
|
|
return ![navigationView shouldCancelNavigationBack];
|
|
} else {
|
|
return YES;
|
|
}
|
|
}
|
|
|
|
@end
|