12345678910111213141516171819202122 |
- //
- // SubmitOrderTableCells.h
- // FirstLink
- //
- // Created by jack on 15/6/18.
- // Copyright (c) 2015年 FirstLink. All rights reserved.
- // 默认收货地址
- #import "UITableViewCell+FKSubmitOrder.h"
- @interface SubmitDefaultAddressCell : UITableViewCell
- @property (nonatomic, strong) UIImageView *topColorLine;
- @property (nonatomic, strong) UIImageView *bottomColorLine;
- @property (nonatomic, strong) UILabel *consigneeTextLabel;
- @property (nonatomic, strong) UILabel *addressTextLabel;
- + (CGFloat)heightWithAddress:(NSString *)text;
- @end
|