No Description

SubmitDefaultAddressCell.h 556B

12345678910111213141516171819202122
  1. //
  2. // SubmitOrderTableCells.h
  3. // FirstLink
  4. //
  5. // Created by jack on 15/6/18.
  6. // Copyright (c) 2015年 FirstLink. All rights reserved.
  7. // 默认收货地址
  8. #import "UITableViewCell+FKSubmitOrder.h"
  9. @interface SubmitDefaultAddressCell : UITableViewCell
  10. @property (nonatomic, strong) UIImageView *topColorLine;
  11. @property (nonatomic, strong) UIImageView *bottomColorLine;
  12. @property (nonatomic, strong) UILabel *consigneeTextLabel;
  13. @property (nonatomic, strong) UILabel *addressTextLabel;
  14. + (CGFloat)heightWithAddress:(NSString *)text;
  15. @end