hi i have a uiscrollview that i have 4 images with buttons laid out vertically in storyboard, i have paging enabled but it skips most of the images and snaps onto the last one.Is there a way to make it stop on each fullscreen image without loading a bunch of uiviews? here is the code i already have its pretty basic. .h
IBOutlet UIScrollView *scroller2;
}
@property (nonatomic, strong) IBOutlet UIScrollView *scroller2;
@end
.m
@synthesize scroller2;
[scroller2 setContentSize:CGSizeMake(320, 3543) ];
scroller2.pagingEnabled = YES;