NIMSessionListCell.h 825 B

123456789101112131415161718192021222324252627282930313233343536
  1. //
  2. // NTESSessionListCell.h
  3. // NIMDemo
  4. //
  5. // Created by chris on 15/2/10.
  6. // Copyright (c) 2015年 Netease. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @class NIMAvatarImageView;
  10. @class NIMRecentSession;
  11. @class NIMBadgeView;
  12. @interface NIMSessionListCell : UITableViewCell
  13. @property (nonatomic,strong) NIMAvatarImageView *avatarImageView;
  14. @property (nonatomic,strong) UILabel *nameLabel;
  15. @property (nonatomic,strong) UIImageView *officialImgV;
  16. @property (nonatomic,strong) UILabel *messageLabel;
  17. @property (nonatomic,strong) UILabel *timeLabel;
  18. @property (nonatomic,strong) UIImageView *vipV;
  19. @property (nonatomic,strong) UIImageView *anchorTagImgV;
  20. @property (nonatomic,strong) NIMBadgeView *badgeView;
  21. @property (nonatomic,strong) UIButton *intimateBtn;
  22. - (void)refresh:(NIMRecentSession*)recent;
  23. @end