| 12345678910111213141516171819202122232425 |
- //
- // SkillsOrderCell.h
- // model
- //
- // Created by zuxiukuan on 2018/7/16.
- // Copyright © 2018年 Mine. All rights reserved.
- // 技能 订单 cell
- #import <UIKit/UIKit.h>
- @interface SkillsOrderCell : UITableViewCell
- @property (nonatomic, strong) UIImageView *iconImageView;
- @property (nonatomic, strong) UILabel *titleLabel;
- @property (nonatomic, strong) UILabel *smallLabel;
- @property (nonatomic, strong) UILabel *subTitleLabel;
- @property (nonatomic, strong) UILabel *childTitleLabel;
- @property (nonatomic, strong) UIImageView *arrowView;
- @property (nonatomic, strong) UIView *lineView;
- @property (nonatomic, strong) UIButton *completeBtn;
- @property (nonatomic, strong) UIButton *cancelBtn;
- @property (nonatomic, strong) UIButton *receiveBtn;
- - (void)setSkillsOrderCellValueWithDic:(NSDictionary *)dic;
- @end
|