WFCUContactTableViewCell.h 494 B

1234567891011121314151617181920
  1. //
  2. // ContactTableViewCell.h
  3. // WFChat UIKit
  4. //
  5. // Created by WF Chat on 2017/10/28.
  6. // Copyright © 2017年 WildFireChat. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface WFCUContactTableViewCell : UITableViewCell
  10. @property (nonatomic, strong)NSString *userId;
  11. @property (nonatomic, strong)UIImageView *portraitView;
  12. @property (nonatomic, strong)UILabel *nameLabel;
  13. @property (nonatomic, strong)NSString *alterName;
  14. @property (nonatomic, assign, getter=isBig)BOOL big;
  15. @end