| 12345678910111213141516171819202122 |
- //
- // MyOrderCell.h
- // model
- //
- // Created by JuYi on 2018/7/17.
- // Copyright © 2018年 Mine. All rights reserved.
- // 我的订单cell
- #import <UIKit/UIKit.h>
- @interface MyOrderCell : UITableViewCell
- @property (nonatomic, strong) UIImageView *iconImageView;
- @property (nonatomic, strong) UILabel *onetitleLabel; // 一条标语的时候
- @property (nonatomic, strong) UILabel *titleLabel;
- @property (nonatomic, strong) UILabel *subTitleLabel;
- @property (nonatomic, strong) UILabel *timeLabel;
- @property (nonatomic, strong) UIImageView *arrowView;
- @property (nonatomic, strong) UIImageView *lineView;
- - (void)setMyOrderCellValueWithDic:(NSDictionary *)dic titleStr:(NSString *)str;
- @end
|