12345678910111213141516171819202122232425 |
- //
- // JXTHomeMessageCell.h
- // shiku_im
- //
- // Created by 123 on 2020/4/28.
- // Copyright © 2020 Reese. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "JXTMessageModel.h"
-
- @interface JXTHomeMessageCell : UITableViewCell
- +(instancetype)cellWithTableView:(UITableView *)tableView;
- @property (nonatomic,copy) JXTMessageModel *teachModel;
- @property (nonatomic,weak) UILabel *countTipL;
- @property (nonatomic,weak) UILabel *guanL;
- -(void)createMesageTip:(JXTMessageModel *)teachModel and:(NSString *)countTip and:(NSIndexPath *)indexPath;
- @end
-
|