VSScrollview VSScrollview. , . , UITableview.
-(VSScrollViewCell *)vsscrollView:(VSScrollView *)scrollView viewAtPosition:(int)position;
// implement this to tell VSScrollview the view at position "position" . This view is VSScrollviewCell or subclass of VSScrollviewCell.
-(NSUInteger)numberOfViewInvsscrollview:(VSScrollView *)scrollview;
// implement this to tell VSScrollview about number of views you want in VSSCrollview.
There are other additional data source and delegation methods that you can use to customize the behavior of VSScrollview. You may have different widths, heights, spacing, and even the size of the scroll content for each view.
source
share