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