23 lines
404 B
Objective-C
23 lines
404 B
Objective-C
//
|
|
// YinMineSettingFillCodeView.h
|
|
// xplan-ios
|
|
//
|
|
// Created by duoban on 2024/3/26.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@protocol YinMineSettingFillCodeViewDelegate <NSObject>
|
|
|
|
-(void)showFillInviteCodeView:(NSString *)code;
|
|
|
|
@end
|
|
|
|
@interface YinMineSettingFillCodeView : UIView
|
|
@property(nonatomic,weak) id<YinMineSettingFillCodeViewDelegate>delegate;
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|