| 1234567891011121314151617181920212223 |
- //
- // YBOnSaleView.h
- // YBVideo
- //
- // Created by YB007 on 2020/8/31.
- // Copyright © 2020 cat. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "YBOnSaleCell.h"
- typedef void (^OnSaleViewBlock)(OnSaleType saleCtrEvent,NSDictionary *goodsDic);
- @interface YBOnSaleView : UIView
- @property(nonatomic,copy)OnSaleViewBlock onSaleEvent;
- +(instancetype)showSaleWithAnchor:(BOOL)isAnchor andAnchorID:(NSString *)anchorID;
- -(void)pullData;
- @end
|