Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Adding UIImageViews to UIScrollView

I am currently researching ways of adding several UIImageView to a single UIScrollView. The UIScrollView will be 1.5 times the size of any one of the UIImageViews. I want to create a scrolling effect for browsing through some small images in an iPad application. Does anyone know how to achieve this?

like image 460
TheLearner Avatar asked Sep 23 '10 10:09

TheLearner


2 Answers

UIScrollView *scrollView = [[UIScrollView alloc] initWithFrame:CGRectMake(/*FRAME*/)]; // this makes the scroll view - set the frame as the size you want to SHOW on the screen
[scrollView setContentSize:CGSizeMake(/*SIZE OF THE CONTENT*/)]; // if you set it to larger than the frame the overflow will be hidden and the view will scroll

/* you can do this bit as many times as you want... make sure you set each image at a different origin */
UIImageView *imageView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"/*IMAGE*/"]]; // this makes the image view
[imageView setFrame:CGRectMake(/*SET AS 2/3 THE SIZE OF scrollView AND EACH IMAGE NEXT TO THE LAST*/)]; // this makes the image view display where you want it and at the right size
[scrollView addSubview:imageView]; // this adds the image to the scrollview
/* end adding image */

[self.view addSubview:scrollView];
like image 115
Thomas Clayson Avatar answered Oct 20 '22 07:10

Thomas Clayson


If you want zoom and everything:

http://developer.apple.com/library/ios/#samplecode/PhotoScroller/Introduction/Intro.html%23//apple_ref/doc/uid/DTS40010080

If you just want a paging scrollview:

http://developer.apple.com/library/ios/#samplecode/PageControl/Introduction/Intro.html%23//apple_ref/doc/uid/DTS40007795

like image 21
LarsJK Avatar answered Oct 20 '22 09:10

LarsJK