| 12345678910111213141516171819202122232425262728293031323334353637 |
- //
- // MOGuildApplyView.h
- // MiMoLive
- //
- // Created by SuperC on 2023/10/25.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface MOGuildApplyView : UIView
- @property (weak, nonatomic) IBOutlet UIButton *titleBtn;
- @property (weak, nonatomic) IBOutlet UIView *contantView;
- @property (weak, nonatomic) IBOutlet UILabel *firstTipLab;
- @property (weak, nonatomic) IBOutlet UILabel *secondTipLab;
- @property (weak, nonatomic) IBOutlet UILabel *thirdTipLab;
- @property (weak, nonatomic) IBOutlet UIButton *doneBtn;
- @property (nonatomic, copy) void (^doneBtnBlock)(void);
- + (instancetype)moGuildApplyView;
- //获取View的适合高度, 在设置firstTipLab以及secondTipLab之后调用
- - (CGFloat)getViewHeight;
- @end
- NS_ASSUME_NONNULL_END
|