// // MyPaperTableViewCell.h // ChinaTheoryNetwork // // Created by 张毅成 on 2019/4/3. // Copyright © 2019 张毅成. All rights reserved. // #import NS_ASSUME_NONNULL_BEGIN @interface MyPaperTableViewCell : UITableViewCell @property (weak, nonatomic) IBOutlet UILabel *labelTitle; @property (weak, nonatomic) IBOutlet UILabel *labelType; @property (weak, nonatomic) IBOutlet UILabel *labelReadNumber; @property (weak, nonatomic) IBOutlet UILabel *labelDetail; @property (weak, nonatomic) IBOutlet UILabel *labelContent; @property (weak, nonatomic) IBOutlet UILabel *labelPrice; @property (weak, nonatomic) IBOutlet UIButton *buttonBuy; + (instancetype)cellWithTableView:(UITableView *)tableView AndIndex:(NSInteger)index; @end NS_ASSUME_NONNULL_END