EASplashScreen icon indicating copy to clipboard operation
EASplashScreen copied to clipboard

Add an awesome sliding splash screen to your app with 3 lines of code

EASplashScreen

Add an awesome sliding splash screen to your app with 3 lines of code!

Preview

About

EASplashScreen allows you to have an Upcoming style splashscreen in your app. All you have to do is supply the image and amount of sliding panes you want.

Usage

EASplashScreen *splashScreen = [[EASplashScreen alloc] initWithSplashScreenImage:[UIImage imageNamed:@"IMAGE.png"] amountOfSlides:7];
splashScreen.delegate = self;
splashScreen.view.frame = self.view.bounds;
[self.view addSubview:splashScreen.view];