1234567891011121314151617181920 |
- //
- // JXTableViewCell.h
- // shiku_im
- //
- // Created by 123 on 2020/6/1.
- // Copyright © 2020 Reese. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface JXTFuLiCell : UITableViewCell
- @property (nonatomic,strong) NSDictionary *dict;
- @property (weak, nonatomic) IBOutlet UIImageView *leftIMG;
- + (instancetype)cellWithTableView:(UITableView *)tableView;
- @end
- NS_ASSUME_NONNULL_END
|