123456789101112131415161718192021 |
- //
- // JXMyFeedCell.h
- // shiku_im
- //
- // Created by 123 on 2020/5/23.
- // Copyright © 2020 Reese. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "JXMyModel.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface JXMyFeedCell : UITableViewCell
- + (instancetype)cellWithTableView:(UITableView *)tableView;
- @property (nonatomic,strong) JXMyModel *model;
- -(void)cellWModel:(JXMyModel *)model index:(NSIndexPath *)index;
- @end
- NS_ASSUME_NONNULL_END
|