SBAppSwitcherPeopleScrollViewDelegate.h 1.1 KB

123456789101112131415
  1. @class SBAppSwitcherPeopleScrollView, SBScrollViewItemWrapper;
  2. @protocol SBAppSwitcherPeopleScrollViewDelegate <UIScrollViewDelegate>
  3. - (NSInteger)numberOfSectionsInPeopleScrollView:(SBAppSwitcherPeopleScrollView *)peopleScrollView;
  4. - (SBScrollViewItemWrapper *)peopleScrollView:(SBAppSwitcherPeopleScrollView *)peopleScrollView itemAtIndexPath:(NSIndexPath *)indexPath;
  5. - (NSInteger)peopleScrollView:(SBAppSwitcherPeopleScrollView *)peopleScrollView numberOfItemsInSection:(NSInteger)section;
  6. - (NSString *)peopleScrollView:(SBAppSwitcherPeopleScrollView *)peopleScrollView placeholderStringForEmptySection:(NSUInteger)emptySection;
  7. - (CGSize)peopleScrollView:(SBAppSwitcherPeopleScrollView *)peopleScrollView sizeForItem:(SBScrollViewItemWrapper *)item expanded:(BOOL)expanded;
  8. - (CGSize)peopleScrollView:(SBAppSwitcherPeopleScrollView *)peopleScrollView sizeForPlaceholderForSection:(NSInteger)section;
  9. - (NSString *)peopleScrollView:(SBAppSwitcherPeopleScrollView *)peopleScrollView titleForSection:(NSUInteger)section;
  10. - (UIView *)peopleScrollView:(SBAppSwitcherPeopleScrollView *)peopleScrollView viewForItem:(SBScrollViewItemWrapper *)item;
  11. @end