SmallPickerCell.h 309 B

1234567891011121314151617181920
  1. //
  2. // SmallPickerCell.h
  3. // GuanYueTeamManager
  4. //
  5. // Created by 王智 on 2023/2/16.
  6. //
  7. #import <UIKit/UIKit.h>
  8. NS_ASSUME_NONNULL_BEGIN
  9. @interface SmallPickerCell : UITableViewCell
  10. @property (nonatomic, assign) BOOL chooseStatus;
  11. - (void)configCellTitle:(NSString *)title;
  12. @end
  13. NS_ASSUME_NONNULL_END