1 #import <UIKit/UIKit.h>
2 
3 @class EXAppLoadingCancelView;
4 
5 @protocol EXAppLoadingCancelViewDelegate <NSObject>
6 
7 - (void)appLoadingCancelViewDidCancel:(EXAppLoadingCancelView *)view;
8 
9 @end
10 
11 /**
12  * This view should just be presented temporarily while manifest is being fetched.
13  * Once manifest is fetched SplashScreen module should take care of the SplashScreen view.
14  * This view shouldn't be visible in production mode.
15  */
16 @interface EXAppLoadingCancelView : UIView
17 
18 - (void)setDelegate:(id<EXAppLoadingCancelViewDelegate>)delegate;
19 
20 @end
21