WFCUGroupMemberTableViewCell.h 504 B

1234567891011121314151617
  1. //
  2. // WFCUGroupMemberTableViewCell.h
  3. // WFChat UIKit
  4. //
  5. // Created by WF Chat on 2017/9/18.
  6. // Copyright © 2017年 WildFireChat. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface WFCUGroupMemberTableViewCell : UITableViewCell
  10. @property (nonatomic, assign)BOOL isSelectable;
  11. @property (nonatomic, assign)BOOL isSelected;
  12. @property (nonatomic, strong)UIImageView *portraitView;
  13. @property (nonatomic, strong)UILabel *groupNameView;
  14. @property (nonatomic, strong)UIImageView *selectView;
  15. @end