1234567891011121314151617181920212223242526 |
- //
- // TrainDetailCell.h
- // jiaPei
- //
- // Created by apple on 2017/3/10.
- // Copyright © 2017年 JCZ. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @interface TrainDetailCell : UITableViewCell
- @property (weak, nonatomic) IBOutlet UILabel *titleLabel;
- @property (weak, nonatomic) IBOutlet UILabel *contentLabel;
- @property (weak, nonatomic) IBOutlet UILabel *mileage_label;
- @property (weak, nonatomic) IBOutlet UIButton *orbitBtn;
- @property (weak, nonatomic) IBOutlet UIButton *commentBtn;
- @end
|