MyPaperTableViewCell.h 780 B

1234567891011121314151617181920212223242526
  1. //
  2. // MyPaperTableViewCell.h
  3. // ChinaTheoryNetwork
  4. //
  5. // Created by 张毅成 on 2019/4/3.
  6. // Copyright © 2019 张毅成. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface MyPaperTableViewCell : UITableViewCell
  11. @property (weak, nonatomic) IBOutlet UILabel *labelTitle;
  12. @property (weak, nonatomic) IBOutlet UILabel *labelType;
  13. @property (weak, nonatomic) IBOutlet UILabel *labelReadNumber;
  14. @property (weak, nonatomic) IBOutlet UILabel *labelDetail;
  15. @property (weak, nonatomic) IBOutlet UILabel *labelContent;
  16. @property (weak, nonatomic) IBOutlet UILabel *labelPrice;
  17. @property (weak, nonatomic) IBOutlet UIButton *buttonBuy;
  18. + (instancetype)cellWithTableView:(UITableView *)tableView AndIndex:(NSInteger)index;
  19. @end
  20. NS_ASSUME_NONNULL_END