MOGuildNewInputCell.h 845 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. //
  2. // MOGuildNewInputCell.h
  3. // MiMoLive
  4. //
  5. // Created by SuperC on 2025/3/16.
  6. //
  7. #define MOGuildNewInputCell_ID @"MOGuildNewInputCell_ID" //复用id
  8. #import <UIKit/UIKit.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface MOGuildNewInputCell : UITableViewCell
  11. @property (weak, nonatomic) IBOutlet UIView *bgView;
  12. @property (weak, nonatomic) IBOutlet UIView *redTipView;
  13. @property (nonatomic, assign) BOOL isHaveRedTip;
  14. @property (weak, nonatomic) IBOutlet UILabel *titleLab;
  15. @property (weak, nonatomic) IBOutlet NSLayoutConstraint *titleLabLeading;
  16. //输入框
  17. @property (weak, nonatomic) IBOutlet UITextField *inputTxf;
  18. @property (weak, nonatomic) IBOutlet UILabel *bottomTipLab;
  19. //返回输入框输入的值
  20. @property (nonatomic, copy) void (^returnTxFText) (NSString *txfString);
  21. - (void)toCheckHaveRedTip;
  22. @end
  23. NS_ASSUME_NONNULL_END