TestsTested | ✗ |
LangLanguage | Obj-CObjective C |
License | MIT |
ReleasedLast Release | Mar 2015 |
Maintained by Ramon Gilabert.
A nicely dynamic slideshow to present whatever you want, just add an image, some text and choose one of the animations, RGDynamicOnboard will take care of the rest. There are multiple ways to customize your slide show, add static images, images that go from a page to another, add text, choose the font and some colors and, with just 5 lines of code, you have a fully responsive slideshow!
Import the main file into your Xcode project or use Cocoapods to install the pod.
self.mainSlideView = [[RGDynamicOnboard alloc] initFullscreenWithNumberOfSlides:3 andPageControl:YES inView:self.view];
[self.mainSlideView addImage:[UIImage imageNamed:@"firstImage"] andText:@"Just like magic, add two lines of code and that's it..." toPageNumber:0];
[self.mainSlideView applyAnimationNumber:0 toGoFromPage:0];
[self.mainSlideView addImage:[UIImage imageNamed:@"secondImage"] andText:@"With multiple animations and some more options!" toPageNumber:1];
[self.mainSlideView applyAnimationNumber:0 toGoFromPage:1];
[self.mainSlideView addImage:[UIImage imageNamed:@"thirdImage"] andText:@"And some more customization is coming!" toPageNumber:2];
[self.mainSlideView applyAnimationNumber:0 toGoFromPage:2];
Add static images, text and customize your colors.
git checkout -b feature-branch
).git commit -am 'Added this feature'
).git push origin feature-branch
).Ramon Gilabert with love! :)