I have some picture, let's say like rectangular piece of paper. I want to position it on the center of the screen, and when user slides left or right with its finger (let's say left), that piece of paper should go left (with the finger), and from the right should come new piece of paper with some new information.
I hope that my description isn't confusing. I guess that this functionality should be easy to do with iOS SDK, I just don't know what to use ...
Thanks for any help ;)
You'll want to use a
UIScrollView
for that. You add your "pieces of paper" -- which I assume will be views (UIImageView
s perhaps?) -- as subviews, and set thecontentSize
property of the scroll view to fit them all. You might also want to set theshowsHorizontalScrollIndicator
property of the scroll view toNO
, to hide the scroller.Off the top of my head, I imagine something like this: