22 lines
360 B
C
22 lines
360 B
C
|
|
//
|
||
|
|
// LMInviteHechangAlert.h
|
||
|
|
// SweetParty
|
||
|
|
//
|
||
|
|
// Created by Xmac on 2024/9/11.
|
||
|
|
//
|
||
|
|
|
||
|
|
#import <UIKit/UIKit.h>
|
||
|
|
|
||
|
|
NS_ASSUME_NONNULL_BEGIN
|
||
|
|
typedef void(^confirmBlcok)(void);
|
||
|
|
|
||
|
|
@interface LMInviteHechangAlert : UIView
|
||
|
|
|
||
|
|
@property (nonatomic, copy) confirmBlcok confirmBlock;
|
||
|
|
- (void)sheetViewforViewAppear;
|
||
|
|
- (void)sheetViewforViewClose;
|
||
|
|
|
||
|
|
@end
|
||
|
|
|
||
|
|
NS_ASSUME_NONNULL_END
|