TrainDetailCell.h 903 B

123456789101112131415161718192021222324252627282930313233
  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 UIButton *orbitBtn;
  13. @property (weak, nonatomic) IBOutlet UIButton *commentBtn;
  14. @property (weak, nonatomic) IBOutlet UILabel *checkMan;
  15. @property (weak, nonatomic) IBOutlet UILabel *reasonLabel;
  16. @property (weak, nonatomic) IBOutlet UILabel *timeLab;
  17. @property (weak, nonatomic) IBOutlet UILabel *statusLabel;
  18. @property (weak, nonatomic) IBOutlet NSLayoutConstraint *orbitBtnTop;
  19. @property (weak, nonatomic) IBOutlet NSLayoutConstraint *reasonLabelTop;
  20. -(void)updateWith:(NSDictionary *)dic;
  21. + (CGFloat)heightForDic:(NSDictionary *)dic;
  22. @end