123456789101112131415161718192021 |
- //
- // NYChartMatrixViewCell.h
- // NYChartDemo
- //
- // Created by kgj on 2023/3/22.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface NYChartMatrixViewCell : UIView
- //热力按钮
- @property(nonatomic,weak) UIButton *itemButton;
- //0-4
- @property(nonatomic,assign) NSInteger type;
- @end
- NS_ASSUME_NONNULL_END
|