.h file #import @interface ScrollingImageViewController : UIViewController { IBOutlet UIScrollView *FirstScrollView; } @property (nonatomic, retain) UIView *FirstScrollView; @end .m file #import "ScrollingImageViewController.h" @implementation ScrollingImageViewController @synthesize FirstScrollView; const CGFloat kScrollObjHeight = 353.0; const CGFloat kScrollObjWidth = 258.0; const NSUInteger kNumImages = 3; – (void)layoutScrollImages { UIImageView *view = nil; NSArray *subviews = [FirstScrollView subviews]; // reposition all image subviews in a horizontal serial fashion CGFloat curXLoc = 0; for (view in subviews) { if ([view isKindOfClass:[UIImageView class]] && view.tag 0) { CGRect frame = view.frame; frame.origin = CGPointMake(curXLoc, 0); view.frame = frame; curXLoc += (kScrollObjWidth); } } // set the content size so it can be scrollable [FirstScrollView setContentSize:CGSizeMake((kNumImages * kScrollObjWidth), [FirstScrollView bounds].size.height)]; } – (void)viewDidLoad { // 1.


I guess you came to this post by searching similar kind of issues in any of the search engine and hope that this resolved your problem. If you find this tips useful, just drop a line below and share the link to others and who knows they might find it useful too.

Stay tuned to my blogtwitter or facebook to read more articles, tutorials, news, tips & tricks on various technology fields. Also Subscribe to our Newsletter with your Email ID to keep you updated on latest posts. We will send newsletter to your registered email address. We will not share your email address to anybody as we respect privacy.


This article is related to
 

Iphone