1#import <UIKit/UIKit.h> 2#import "EXHomeAppSplashScreenViewProvider.h" 3 4@implementation EXHomeAppSplashScreenViewProvider 5 6- (UIView *)createSplashScreenView 7{ 8 UIView *splashScreenView = [super createSplashScreenView]; 9 10 UIActivityIndicatorView *activityIdicatorView = (UIActivityIndicatorView *)[splashScreenView viewWithTag:1]; 11 activityIdicatorView.hidesWhenStopped = YES; 12 [activityIdicatorView startAnimating]; 13 14 return splashScreenView; 15} 16 17@end 18