Hello, i want to shift images trough the app, maybe like in the album or something similar, so that i can watch one image after the next,...
how would you program that?
Such a kind of sliding would be nice
Hello, i want to shift images trough the app, maybe like in the album or something similar, so that i can watch one image after the next,...
how would you program that?
Such a kind of sliding would be nice
You should probably use multiple UIImageView
s in a UIScrollView
with its pagingEnabled property set to YES. Each UIImageView
should be the size of the UIScrollView
's bounds, and its contentSize's width should match the cumulated widths of all your UIImageView
s.