For creating the 'swipe through' functionality, you'll have you use a UIScrollView with horizontal scrolling. The bounds of the UIScrollView should be set to the total available space, probably the whole screen (CGRectMake(0, 0, 320, 480)) and the contentSize should be the total width of the screens with images, so number of images * 320. The height of this contentSize should be set to the height of the UIScrollView itself, so only horizontal scrolling is possible.
For snapping to each image (so that would be every 320px) you can set the pagingEnabled property to YES (Thanks @Ben in the comments!)