省钱达人

BuyLimitSegmentManager.h 718B

123456789101112131415161718192021222324252627282930
  1. //
  2. // BuyLimitSegmentManager.h
  3. // YouHuiProject
  4. //
  5. // Created by 小花 on 2018/7/6.
  6. // Copyright © 2018年 kuxuan. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. #import <UIKit/UIKit.h>
  10. #import "BuyLimitHeader.h"
  11. #import "MLMSegmentScroll.h"
  12. @interface BuyLimitSegmentManager : NSObject
  13. /**
  14. * 绑定两个view
  15. */
  16. + (void)associateHead:(BuyLimitHeader *)head
  17. withScroll:(MLMSegmentScroll *)scroll
  18. completion:(void(^)(void))completion;
  19. + (void)associateHead:(BuyLimitHeader *)head
  20. withScroll:(MLMSegmentScroll *)scroll
  21. contentChangeAni:(BOOL)ani
  22. completion:(void(^)(void))completion
  23. selectEnd:(void(^)(NSInteger index))selectEnd;
  24. @end