Advice on iPhone Horizental UIScrollView
I'm trying to create a UIScrollView (horizental) where the user can swipe through images left and right as seen in this photo (http://i.stack.imgur.com/GvtOr.jpg), where tapping on a photo would trigger an event.
I just need general advice on how to structure thi开发者_运维问答s programmatically, would really appreciate it.
use
[Scroller setContentSize:CGSizeMake(Scroller.frame.size.width*4,Scroller.frame.size.height)];
精彩评论