exposed the loading

This commit is contained in:
Pfeil, Scott Robert 2019-01-29 10:02:47 -05:00
parent 2c04e6521e
commit ddd5970546
2 changed files with 2 additions and 1 deletions

View File

@ -12,6 +12,7 @@
@class MVMCoreUISplitViewController;
@class MFViewController;
@class MVMCoreUINavigationControllerViewController;
@class MFLoadingViewController;
NS_ASSUME_NONNULL_BEGIN
@interface MVMCoreUISession : MVMCoreSessionObject
@ -19,6 +20,7 @@ NS_ASSUME_NONNULL_BEGIN
@property (weak, nonatomic, nullable) MVMCoreUITopAlertView *topAlertView;
@property (weak, nonatomic, nullable) MVMCoreUISplitViewController *splitViewController;
@property (weak, nonatomic, nullable) MVMCoreUINavigationControllerViewController *navigationController;
@property (weak, nonatomic, nullable) MFLoadingViewController *loadingViewController;
// for handscroll Animation on subclasses of MFScrollingViewController
@property (assign, nonatomic) BOOL enableHandScrollAnimation;

View File

@ -14,7 +14,6 @@
@interface MVMCoreUISession () <MVMCoreLoadingOverlayDelegateProtocol>
@property (weak, nonatomic, nullable) UIViewController *mainViewController;
@property (weak, nonatomic, nullable) MFLoadingViewController *loadingViewController;
@end