1#import "EXManagedAppSplashScreenConfiguration.h" 2 3@implementation EXManagedAppSplashScreenConfiguration 4 5- (instancetype)initWithBackgroundColor:(UIColor *)backgroundColor 6 imageUrl:(NSString *)imageUrl 7 imageResizeMode:(EXSplashScreenImageResizeMode)imageResizeMode 8{ 9 if (self = [super init]) { 10 _backgroundColor = backgroundColor; 11 _imageUrl = imageUrl; 12 _imageResizeMode = imageResizeMode; 13 } 14 return self; 15} 16 17@end 18