Parallax Rolling Banner
NSMutableArray * image = [NSMutableArray new];
[image addObject:[UIImage imageNamed:@"1.jpg"]];
[image addObject:[UIImage imageNamed:@"0.jpg"]];
[image addObject:[UIImage imageNamed:@"2.jpg"]];
RollingBanner * banner = [[RollingBanner alloc] initWithFrame:CGRectMake(0, 64, self.view.bounds.size.width, 300) pictures:image atIndex:1];
[self.view addSubview:banner];
banner.pagingEnabled = YES; //if you wannna system paging rather than the custom paging
// -- Custom Paing, which is more soomth and flexible