CocoaPods trunk is moving to be read-only. Read more on the blog, there are 14 months to go.
| TestsTested | ✗ | 
| LangLanguage | Obj-CObjective C | 
| License | MIT | 
| ReleasedLast Release | Dec 2014 | 
Maintained by Unclaimed.
A lightweight UIScrollView block-driven subclass for easily create multiple pages with embedded UIViews in Objective-C.
Import AFScrollView to your class
#import "AFScrollView.h"
Init the class with -initWithFrame:andNumberOfPages.
AFScrollView *scrollView = [[AFScrollView alloc]initWithFrame:self.view.bounds andNumberOfPages:5];
In order to configure each page, which will be an UIView, call the block -configureViewAtIndexWithCompletion:
[scrollView configureViewAtIndexWithCompletion:^(UIView *view, NSInteger index, BOOL success) {
  //Configure here each page
  //Every page have a UIView embedded
  //So, in order to add objects, call [view addSubview:element];
  //The index var will retreive the current index
}];
Made by Alvaro Franco. If you have any question, feel free to drop me a line at [email protected]