1234567891011121314151617181920212223242526 |
- //
- // EditAddressCell.h
- // FirstLink
- //
- // Created by ascii on 15/5/28.
- // Copyright (c) 2015年 FirstLink. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #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
|