MOGuildInputBaseCell.h 546 B

123456789101112131415161718192021222324252627
  1. //
  2. // MOGuildInputBaseCell.h
  3. // MiMoLive
  4. //
  5. // Created by SuperC on 2023/10/26.
  6. //
  7. #define MOGuildInputBaseCell_ID @"MOGuildInputBaseCell_ID" //复用id
  8. #import <UIKit/UIKit.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface MOGuildInputBaseCell : UITableViewCell<UITextFieldDelegate>
  11. @property (weak, nonatomic) IBOutlet UILabel *titleLab;
  12. //输入框
  13. @property (weak, nonatomic) IBOutlet UITextField *inputTxf;
  14. //返回输入框输入的值
  15. @property (nonatomic, copy) void (^returnTxFText) (NSString *txfString);
  16. @end
  17. NS_ASSUME_NONNULL_END