An UIimageview in scroll view is fine to show all images . Below is loading all images from array to UIimageView in a UIscrollview
for (UIView *v in [scrollView subviews]) {
[v removeFromSuperview];
}
CGRect workingFrame = scrollView.frame;
workingFrame.origin.x = 0;
for(id datavalue in tableList) {
UIImage *downloadedImage = [UIImage imageWithData:datavalue];
imageview = [[UIImageView alloc] initWithImage:downloadedImage];
[imageview.layer setBorderColor: [[UIColor grayColor] CGColor]];
[imageview.layer setBorderWidth: 2.0];
[imageview setContentMode:UIViewContentModeScaleAspectFit];
imageview.frame = workingFrame;
[scrollView addSubview:imageview];
[imageview release];
workingFrame.origin.x = workingFrame.origin.x + workingFrame.size.width;
}
[scrollView setPagingEnabled:YES];
[scrollView setContentSize:CGSizeMake(workingFrame.origin.x, workingFrame.size.height)];
where tablelist is a collection of image data.