MyOrderCell.h 695 B

12345678910111213141516171819202122
  1. //
  2. // MyOrderCell.h
  3. // model
  4. //
  5. // Created by JuYi on 2018/7/17.
  6. // Copyright © 2018年 Mine. All rights reserved.
  7. // 我的订单cell
  8. #import <UIKit/UIKit.h>
  9. @interface MyOrderCell : UITableViewCell
  10. @property (nonatomic, strong) UIImageView *iconImageView;
  11. @property (nonatomic, strong) UILabel *onetitleLabel; // 一条标语的时候
  12. @property (nonatomic, strong) UILabel *titleLabel;
  13. @property (nonatomic, strong) UILabel *subTitleLabel;
  14. @property (nonatomic, strong) UILabel *timeLabel;
  15. @property (nonatomic, strong) UIImageView *arrowView;
  16. @property (nonatomic, strong) UIImageView *lineView;
  17. - (void)setMyOrderCellValueWithDic:(NSDictionary *)dic titleStr:(NSString *)str;
  18. @end