UpHotOrderView.h 374 B

123456789101112131415161718
  1. //
  2. // UpHotOrderView.h
  3. // YBVideo
  4. //
  5. // Created by ybRRR on 2023/7/12.
  6. // Copyright © 2023 cat. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. typedef void(^upHotOrderEvent)(NSString *type);
  10. @interface UpHotOrderView : UIView
  11. -(instancetype)initWithFrame:(CGRect)frame andInfoDic:(NSDictionary *)infoDic;
  12. @property (nonatomic, copy)upHotOrderEvent btnEvent;
  13. @end