Shift UIImageView or similar Picture trough view
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 t开发者_Go百科hat?
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.
精彩评论