Files
peko-ios/YuMi/Modules/YMRoom/View/SendRedPacket/XPRoomRedPacketPwdView.h
2023-07-14 18:50:55 +08:00

32 lines
537 B
Objective-C

//
// YMRoomRedPacketPwdView.h
// YUMI
//
// Created by YUMI 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