1234567891011121314151617181920212223242526 |
- //
- // MyPaperTableViewCell.h
- // ChinaTheoryNetwork
- //
- // Created by 张毅成 on 2019/4/3.
- // Copyright © 2019 张毅成. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- 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
|