From bedacbf1ecf36ab4d38a303223b04ac94eb8b577 Mon Sep 17 00:00:00 2001 From: "Pfeil, Scott Robert" Date: Fri, 11 Jun 2021 11:04:47 -0400 Subject: [PATCH] Managers handle navigation bar nullable --- MVMCore/MVMCore/MainProtocols/MVMCoreViewManagerProtocol.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MVMCore/MVMCore/MainProtocols/MVMCoreViewManagerProtocol.h b/MVMCore/MVMCore/MainProtocols/MVMCoreViewManagerProtocol.h index 94cf031..4407a49 100644 --- a/MVMCore/MVMCore/MainProtocols/MVMCoreViewManagerProtocol.h +++ b/MVMCore/MVMCore/MainProtocols/MVMCoreViewManagerProtocol.h @@ -12,7 +12,7 @@ @protocol MVMCoreViewManagerProtocol // Return the current view controller showing -- (nonnull UIViewController *)getCurrentViewController; +- (nullable UIViewController *)getCurrentViewController; // Returns if the manage currently contains the page with the page type. - (BOOL)containsPageWithPageType:(nullable NSString *)pageType;