diff --git a/MVMCoreUI/BaseControllers/MFViewController.h b/MVMCoreUI/BaseControllers/MFViewController.h index 25db3349..c1415df4 100644 --- a/MVMCoreUI/BaseControllers/MFViewController.h +++ b/MVMCoreUI/BaseControllers/MFViewController.h @@ -137,10 +137,10 @@ /// The function that gets called by the notification center when the JSON is updated, if we have anything we are listening for (pageTypesToListenFor, modulesToListenFor). This function also tells the screen to update (newDataBuildAndUpdate) if we received new json that we were listening for. - (void)responseJSONUpdated:(nonnull NSNotification *)notification; -/// Sets the page on the load object. If a new page was loaded, we will update the screen. Can subclass to avoid this. +/// Sets the page on the load object. Default returns true. Return true if the page is loaded and newDataBuildAndUpdate needs to happen. Can subclass to avoid this. - (BOOL)newPageLoaded:(nonnull NSDictionary *)page; -/// Appends to the modules on the load object. If new modules were loaded, we will update the screen. Can subclass to avoid this. +/// Appends to the modules on the load object. Default returns true. Return true if the modules are loaded and newDataBuildAndUpdate needs to happen. Can subclass to avoid this. - (BOOL)newModulesLoaded:(nonnull NSDictionary *)modules; /** Verifies that all needed modules are loaded