It is a Scrollview Component which contains nice animation feature of UIScrollview and UIPageController.
It is a well structured components which contains Model View Controller design pattern, It will perform different animations then other.
What is new ?
It is well structured . It follows MVC. It contains different animations for different views. It contains Swipe left,swipe right,swipe up,swipe down and images up to down animations. You can add as many component in given scrollview.
It will definitely make your app much interesting with its animations.
Import two files
PJRPageScrollingView.h and PJRItems.h
- Add your items like:
@"Places" ofType:@"plist"];```
```NSMutableArray *placeArray = [[NSMutableArray alloc] initWithContentsOfFile:path];```
```NSMutableArray *array = [[NSMutableArray alloc] init];```
```for (int i =0 ; i < [placeArray count] ; i++){```
NSDictionary *dict = [placeArray objectAtIndex:i];
PJRItems *item = [[PJRItems alloc] init];
item.itemTitle = [dict objectForKey:@"placeName"];
item.itemDesc = [dict objectForKey:@"placeDesc"];
item.itemImage = [dict objectForKey:@"placeImage"];
[array addObject:item];
}
- **Call Slider view from your controller**
PJRPageScrollingView *pagScrollView = [[PJRPageScrollingView alloc] initWithFrame:self.view.bounds withNumberOfItems:array]; [self.view addSubview:pagScrollView];
License
=====================
Paritosh Raval