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