123456789101112131415161718192021222324252627282930313233343536 |
- //
- // NTESSessionListCell.h
- // NIMDemo
- //
- // Created by chris on 15/2/10.
- // Copyright (c) 2015年 Netease. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @class NIMAvatarImageView;
- @class NIMRecentSession;
- @class NIMBadgeView;
- @interface NIMSessionListCell : UITableViewCell
- @property (nonatomic,strong) NIMAvatarImageView *avatarImageView;
- @property (nonatomic,strong) UILabel *nameLabel;
- @property (nonatomic,strong) UIImageView *officialImgV;
- @property (nonatomic,strong) UILabel *messageLabel;
- @property (nonatomic,strong) UILabel *timeLabel;
- @property (nonatomic,strong) UIImageView *vipV;
- @property (nonatomic,strong) UIImageView *anchorTagImgV;
- @property (nonatomic,strong) NIMBadgeView *badgeView;
- @property (nonatomic,strong) UIButton *intimateBtn;
- - (void)refresh:(NIMRecentSession*)recent;
- @end
|