123456789101112131415161718192021222324252627282930 |
- //
- // BuyLimitSegmentManager.h
- // YouHuiProject
- //
- // Created by 小花 on 2018/7/6.
- // Copyright © 2018年 kuxuan. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- #import <UIKit/UIKit.h>
- #import "BuyLimitHeader.h"
- #import "MLMSegmentScroll.h"
- @interface BuyLimitSegmentManager : NSObject
- /**
- * 绑定两个view
- */
- + (void)associateHead:(BuyLimitHeader *)head
- withScroll:(MLMSegmentScroll *)scroll
- completion:(void(^)(void))completion;
- + (void)associateHead:(BuyLimitHeader *)head
- withScroll:(MLMSegmentScroll *)scroll
- contentChangeAni:(BOOL)ani
- completion:(void(^)(void))completion
- selectEnd:(void(^)(NSInteger index))selectEnd;
- @end
|