| 123456789101112131415161718192021222324252627 |
- //
- // MOGuildInputBaseCell.h
- // MiMoLive
- //
- // Created by SuperC on 2023/10/26.
- //
- #define MOGuildInputBaseCell_ID @"MOGuildInputBaseCell_ID" //复用id
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface MOGuildInputBaseCell : UITableViewCell<UITextFieldDelegate>
- @property (weak, nonatomic) IBOutlet UILabel *titleLab;
- //输入框
- @property (weak, nonatomic) IBOutlet UITextField *inputTxf;
- //返回输入框输入的值
- @property (nonatomic, copy) void (^returnTxFText) (NSString *txfString);
- @end
- NS_ASSUME_NONNULL_END
|