//
//  KWMEditAddressVC.h
//  iCemarose
//
//  Created by HouWeiBin on 16/9/5.
//  Copyright © 2016年 kollway. All rights reserved.
//

#import "KWMBaseVC.h"
#import "Buy/Buy.h"
#import "KWMTextFieldUtil.h"

@interface KWMEditAddressVC : KWMBaseVC<UITextFieldDelegate>

@property (weak, nonatomic) IBOutlet KWMTextFieldUtil *tfCountry;

@property (weak, nonatomic) IBOutlet KWMTextFieldUtil *tfProvince;

@property (weak, nonatomic) IBOutlet KWMTextFieldUtil *tfCity;

@property (weak, nonatomic) IBOutlet KWMTextFieldUtil *tfAddress;

@property (weak, nonatomic) IBOutlet KWMTextFieldUtil *tfAddressDetail;

@property (weak, nonatomic) IBOutlet KWMTextFieldUtil *tfName;

@property (weak, nonatomic) IBOutlet KWMTextFieldUtil *tfPhone;

@property (weak, nonatomic) IBOutlet KWMTextFieldUtil *tfZip;


//固定值为30,弹出软键盘时修改
@property(nonatomic,weak)IBOutlet NSLayoutConstraint *marginTopOfCountry;


//保存用上个页面传过来的地址对象,为空时表示此页为“添加地址”页面
@property (nonatomic) BUYAddress *address;

@end