1234567891011121314151617181920 |
- //
- // SmallPickerCell.h
- // GuanYueTeamManager
- //
- // Created by 王智 on 2023/2/16.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface SmallPickerCell : UITableViewCell
- @property (nonatomic, assign) BOOL chooseStatus;
- - (void)configCellTitle:(NSString *)title;
- @end
- NS_ASSUME_NONNULL_END
|