CellWithBtnView.h 340 B

123456789101112131415161718192021
  1. //
  2. // CellWithBtnView.h
  3. // 隐私保护
  4. //
  5. // Created by APPLE on 2023/8/24.
  6. //
  7. #import <UIKit/UIKit.h>
  8. NS_ASSUME_NONNULL_BEGIN
  9. @interface CellWithBtnView : UIView
  10. @property(nonatomic,strong)UILabel *topLabel;
  11. @property(nonatomic,strong)UILabel *downLabel;
  12. @property(nonatomic,strong)UIButton *rightBtn;
  13. @end
  14. NS_ASSUME_NONNULL_END