暫無描述

FKAddressDetailCell.h 659B

1234567891011121314151617181920212223242526
  1. //
  2. // EditAddressCell.h
  3. // FirstLink
  4. //
  5. // Created by ascii on 15/5/28.
  6. // Copyright (c) 2015年 FirstLink. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "UIPlaceHolderTextView.h"
  10. typedef NS_ENUM(NSInteger, FKAddressDetailCellType) {
  11. FKAddressDetailCellTypeConsigneeName,
  12. FKAddressDetailCellTypeConsigneeMobile,
  13. FKAddressDetailCellTypeConsigneeDistrict,
  14. FKAddressDetailCellTypeConsigneeDetailAddress,
  15. };
  16. @interface FKAddressDetailCell : UITableViewCell
  17. @property (nonatomic, strong) UILabel *tipLabel;
  18. @property (nonatomic, strong) UIPlaceHolderTextView *textView;
  19. @property (nonatomic, strong) UIImageView *arrowIcon;
  20. @end