From 81f8a0221bd535321e314c53436786d819413b06 Mon Sep 17 00:00:00 2001 From: "Pfeil, Scott Robert" Date: Wed, 23 Jan 2019 16:06:17 -0500 Subject: [PATCH] name change --- .../MainProtocols/MVMCoreViewManagerViewControllerProtocol.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/MVMCore/MVMCore/MainProtocols/MVMCoreViewManagerViewControllerProtocol.h b/MVMCore/MVMCore/MainProtocols/MVMCoreViewManagerViewControllerProtocol.h index d5bc58f..70b8c4b 100644 --- a/MVMCore/MVMCore/MainProtocols/MVMCoreViewManagerViewControllerProtocol.h +++ b/MVMCore/MVMCore/MainProtocols/MVMCoreViewManagerViewControllerProtocol.h @@ -22,8 +22,8 @@ // Notifies the current showing view controller that the manager is disappearing. - (void)managerWillDisappear:(nonnull NSObject *)manager; -// Can override the standard tab page control to not cache in tab. You should be following proper caching techniques (caching, updating when needed, deleting when needed), so this should be a last resort. -- (BOOL)shouldCacheInTabPageControl; +// Manager can check if the view controller does not want to be cached. You should be following proper caching techniques (caching, updating when needed, deleting when needed), so this should be a last resort. +- (BOOL)shouldCacheInManager; @end