WFCUSelectedUserTableViewCell.h 557 B

123456789101112131415161718192021
  1. //
  2. // WFCUSelectedUserTableViewCell.h
  3. // WFChatUIKit
  4. //
  5. // Created by Zack Zhang on 2020/4/5.
  6. // Copyright © 2020 WildFireChat. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "WFCUSelectedUserInfo.h"
  10. NS_ASSUME_NONNULL_BEGIN
  11. @interface WFCUSelectedUserTableViewCell : UITableViewCell
  12. @property (nonatomic, strong)WFCUSelectedUserInfo *selectedUserInfo;
  13. @property(nonatomic, strong)UIImageView *checkImageView;
  14. @property(nonatomic, strong)UIImageView *portraitView;
  15. @property(nonatomic, strong)UILabel *nameLabel;
  16. @end
  17. NS_ASSUME_NONNULL_END