YBOnSaleView.h 453 B

1234567891011121314151617181920212223
  1. //
  2. // YBOnSaleView.h
  3. // YBVideo
  4. //
  5. // Created by YB007 on 2020/8/31.
  6. // Copyright © 2020 cat. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "YBOnSaleCell.h"
  10. typedef void (^OnSaleViewBlock)(OnSaleType saleCtrEvent,NSDictionary *goodsDic);
  11. @interface YBOnSaleView : UIView
  12. @property(nonatomic,copy)OnSaleViewBlock onSaleEvent;
  13. +(instancetype)showSaleWithAnchor:(BOOL)isAnchor andAnchorID:(NSString *)anchorID;
  14. -(void)pullData;
  15. @end