| 1234567891011121314151617181920212223242526272829303132333435 |
- //
- // MOGuildPhoneNumCell.h
- // MiMoLive
- //
- // Created by SuperC on 2025/3/16.
- //
- #define MOGuildPhoneNumCell_ID @"MOGuildPhoneNumCell_ID" //复用id
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface MOGuildPhoneNumCell : UITableViewCell
- @property (weak, nonatomic) IBOutlet UIView *redTagView;
- @property (weak, nonatomic) IBOutlet UILabel *titleLab;
- @property (weak, nonatomic) IBOutlet UIView *bgView;
- @property (weak, nonatomic) IBOutlet UIButton *codeBtn;
- //输入框
- @property (weak, nonatomic) IBOutlet UITextField *inputTxf;
- //返回输入框输入的值
- @property (nonatomic, copy) void (^returnTxFText) (NSString *txfString);
- @property (nonatomic, copy) void (^getCodeBlock) (void);
- - (void)toCheckHaveRedTip;
- @end
- NS_ASSUME_NONNULL_END
|