// // TrainDetailCell.h // jiaPei // // Created by apple on 2017/3/10. // Copyright © 2017年 JCZ. All rights reserved. // #import @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