20 lines
331 B
C
20 lines
331 B
C
|
|
//
|
||
|
|
// inputInviteCodeAlertView.h
|
||
|
|
// TreeHole
|
||
|
|
//
|
||
|
|
// Created by 郑创权 on 2022/11/13.
|
||
|
|
//
|
||
|
|
|
||
|
|
#import <UIKit/UIKit.h>
|
||
|
|
|
||
|
|
NS_ASSUME_NONNULL_BEGIN
|
||
|
|
|
||
|
|
@interface inputInviteCodeAlertView : UIView
|
||
|
|
|
||
|
|
@property (nonatomic, copy) void(^sureBtnBlock)(void);
|
||
|
|
@property (nonatomic, copy) void(^cancelBtnBlock)(void);
|
||
|
|
|
||
|
|
@end
|
||
|
|
|
||
|
|
NS_ASSUME_NONNULL_END
|