1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
//
// 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