| 123456789101112131415161718192021222324252627282930313233 |
- //
- // ChatFriendCell.h
- // BuguLive
- //
- // Created by 朱庆彬 on 2017/8/22.
- // Copyright © 2017年 xfg. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @class JSBadgeView;
- @class M80AttributedLabel;
- @interface ChatFriendCell : UITableViewCell
- @property (weak, nonatomic) IBOutlet UIImageView *mheadimg;
- @property (weak, nonatomic) IBOutlet UILabel *mname;
- @property (weak, nonatomic) IBOutlet M80AttributedLabel *mmsg;
- @property (weak, nonatomic) IBOutlet UILabel *mtime;
- @property (weak, nonatomic) IBOutlet UIImageView *mlevel;
- @property (weak, nonatomic) IBOutlet UIImageView *msex;
- @property (weak, nonatomic) IBOutlet UIView *mcountview;
- //@property (weak, nonatomic) IBOutlet JSBadgeView *mjsbadge;
- @property (weak, nonatomic) IBOutlet UIImageView *viconImageView;
- @property (weak, nonatomic) IBOutlet UILabel *unReadLabel;
- @property (weak, nonatomic) IBOutlet UIView *unReadView;
- - (void)setUnReadCount:(int)count;
- @end
|