TrainDetailCell.h 508 B

1234567891011121314151617181920212223242526
  1. //
  2. // TrainDetailCell.h
  3. // jiaPei
  4. //
  5. // Created by apple on 2017/3/10.
  6. // Copyright © 2017年 JCZ. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface TrainDetailCell : UITableViewCell
  10. @property (weak, nonatomic) IBOutlet UILabel *titleLabel;
  11. @property (weak, nonatomic) IBOutlet UILabel *contentLabel;
  12. @property (weak, nonatomic) IBOutlet UILabel *mileage_label;
  13. @property (weak, nonatomic) IBOutlet UIButton *orbitBtn;
  14. @property (weak, nonatomic) IBOutlet UIButton *commentBtn;
  15. @end