| 1234567891011121314151617181920212223242526272829303132333435363738 |
- //
- // MOGuildNewInputCell.h
- // MiMoLive
- //
- // Created by SuperC on 2025/3/16.
- //
- #define MOGuildNewInputCell_ID @"MOGuildNewInputCell_ID" //复用id
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface MOGuildNewInputCell : UITableViewCell
- @property (weak, nonatomic) IBOutlet UIView *bgView;
- @property (weak, nonatomic) IBOutlet UIView *redTipView;
- @property (nonatomic, assign) BOOL isHaveRedTip;
- @property (weak, nonatomic) IBOutlet UILabel *titleLab;
- @property (weak, nonatomic) IBOutlet NSLayoutConstraint *titleLabLeading;
- //输入框
- @property (weak, nonatomic) IBOutlet UITextField *inputTxf;
- @property (weak, nonatomic) IBOutlet UILabel *bottomTipLab;
- //返回输入框输入的值
- @property (nonatomic, copy) void (^returnTxFText) (NSString *txfString);
- - (void)toCheckHaveRedTip;
- @end
- NS_ASSUME_NONNULL_END
|