32 lines
547 B
Objective-C
32 lines
547 B
Objective-C
//
|
|
// XPRoomRedPacketPwdView.h
|
|
// xplan-ios
|
|
//
|
|
// Created by GreenLand on 2022/8/31.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@protocol XPRoomRedPacketPwdViewDelegate <NSObject>
|
|
|
|
///完成输入密码
|
|
- (void)xPRoomRedPacketPwdViewPwdComplete:(NSString *)pwd;
|
|
|
|
//忘记密码
|
|
- (void)xPRoomRedPacketPwdViewPwdForgetBtnClick;
|
|
|
|
@end
|
|
|
|
@interface XPRoomRedPacketPwdView : UIView
|
|
|
|
@property (nonatomic, copy) NSString *diamonCount;
|
|
|
|
@property (nonatomic, weak) id<XPRoomRedPacketPwdViewDelegate> delegate;
|
|
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|