SkillsOrderCell.h 818 B

12345678910111213141516171819202122232425
  1. //
  2. // SkillsOrderCell.h
  3. // model
  4. //
  5. // Created by zuxiukuan on 2018/7/16.
  6. // Copyright © 2018年 Mine. All rights reserved.
  7. // 技能 订单 cell
  8. #import <UIKit/UIKit.h>
  9. @interface SkillsOrderCell : UITableViewCell
  10. @property (nonatomic, strong) UIImageView *iconImageView;
  11. @property (nonatomic, strong) UILabel *titleLabel;
  12. @property (nonatomic, strong) UILabel *smallLabel;
  13. @property (nonatomic, strong) UILabel *subTitleLabel;
  14. @property (nonatomic, strong) UILabel *childTitleLabel;
  15. @property (nonatomic, strong) UIImageView *arrowView;
  16. @property (nonatomic, strong) UIView *lineView;
  17. @property (nonatomic, strong) UIButton *completeBtn;
  18. @property (nonatomic, strong) UIButton *cancelBtn;
  19. @property (nonatomic, strong) UIButton *receiveBtn;
  20. - (void)setSkillsOrderCellValueWithDic:(NSDictionary *)dic;
  21. @end