I am having a set of images.How can i use them to set an infinite slide show.The images should continue as a loop.I want to use only horizontal scroll in both directions.
Asked
Active
Viewed 517 times
2 Answers
0
You can set this using this
self.scrollviewImageList.contentSize = CGSizeMake((self.imgTab.frame.size.width*no_of_images),self.imgTab.frame.size.height);

souvickcse
- 7,742
- 5
- 37
- 64
-
What is imgTab object.How can i define it? – slaveCoder Dec 13 '13 at 07:04
-
Also what is scrollviewimagelist object?? can you give an example. – slaveCoder Dec 13 '13 at 07:05
-
1scrollviewImageList is your scrollview and imgTab is your image view. – souvickcse Dec 13 '13 at 07:33