// // EditAddressCell.h // FirstLink // // Created by ascii on 15/5/28. // Copyright (c) 2015年 FirstLink. All rights reserved. // #import #import "UIPlaceHolderTextView.h" typedef NS_ENUM(NSInteger, FKAddressDetailCellType) { FKAddressDetailCellTypeConsigneeName, FKAddressDetailCellTypeConsigneeMobile, FKAddressDetailCellTypeConsigneeDistrict, FKAddressDetailCellTypeConsigneeDetailAddress, }; @interface FKAddressDetailCell : UITableViewCell @property (nonatomic, strong) UILabel *tipLabel; @property (nonatomic, strong) UIPlaceHolderTextView *textView; @property (nonatomic, strong) UIImageView *arrowIcon; @end