review comment update

This commit is contained in:
Pfeil, Scott Robert 2020-06-02 15:59:26 -04:00
parent b95cb758c8
commit 31331ead2c
5 changed files with 6 additions and 16 deletions

View File

@ -60,12 +60,8 @@
}
- (void)removeDelegate:(nullable id <MVMCorePresentationDelegateProtocol>)delegate {
for (id currentDelegate in [self.delegates allObjects]) {
if (currentDelegate == delegate) {
[self.delegates removeObject:delegate];
}
}
}
#pragma mark - Navigation Helpers

View File

@ -37,10 +37,4 @@
// Called when a view controller did be present on another
- (void)viewController:(nonnull UIViewController *)presentingViewController didPresentViewController:(nonnull UIViewController *)presentedViewController;
// Called when a view controller will be dismissed off another view controller
- (void)willDismissViewController:(nonnull UIViewController *)viewController;
// Called when a view controller did dismiss
- (void)didDismissViewController:(nonnull UIViewController *)viewController;
@end