MOGuildPhoneNumCell.h 773 B

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