BGRoomSetPwdCell.h 602 B

123456789101112131415161718192021222324
  1. //
  2. // BGRoomSetPwdCell.h
  3. // UniversalApp
  4. //
  5. // Created by bugu on 2020/3/23.
  6. // Copyright © 2020 voidcat. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "RoomPasswordView.h"
  10. NS_ASSUME_NONNULL_BEGIN
  11. @interface BGRoomSetPwdCell : UITableViewCell
  12. @property(nonatomic, strong) QMUITextField *titleTextField;
  13. @property(nonatomic, strong) UIButton *openBtn;
  14. @property(nonatomic, copy) void (^pwdStatusBlock)(UIButton * sender);
  15. @property(nonatomic, copy) void (^pwdTextChangeBlock)(NSString * text);
  16. @property(nonatomic, strong) RoomPasswordView *passwordView;
  17. @end
  18. NS_ASSUME_NONNULL_END