123456789101112131415161718192021222324252627282930313233 |
- //
- // 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 UIButton *orbitBtn;
- @property (weak, nonatomic) IBOutlet UIButton *commentBtn;
- @property (weak, nonatomic) IBOutlet UILabel *checkMan;
- @property (weak, nonatomic) IBOutlet UILabel *reasonLabel;
- @property (weak, nonatomic) IBOutlet UILabel *timeLab;
- @property (weak, nonatomic) IBOutlet UILabel *statusLabel;
- @property (weak, nonatomic) IBOutlet NSLayoutConstraint *orbitBtnTop;
- @property (weak, nonatomic) IBOutlet NSLayoutConstraint *reasonLabelTop;
- -(void)updateWith:(NSDictionary *)dic;
- + (CGFloat)heightForDic:(NSDictionary *)dic;
- @end
|