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