EditAddressCell.h 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. //
  2. // EditAddressCell.h
  3. // BuguLive
  4. //
  5. // Created by fanwe2014 on 16/10/19.
  6. // Copyright © 2016年 xfg. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @protocol pushToMapDelegate <NSObject>
  10. - (void)pushToMapController;
  11. @end
  12. @interface EditAddressCell : UITableViewCell
  13. @property (nonatomic, weak) id<pushToMapDelegate>delegate;
  14. @property (weak, nonatomic) IBOutlet UILabel *personLabel;
  15. @property (weak, nonatomic) IBOutlet UITextField *personFiled;
  16. @property (weak, nonatomic) IBOutlet UILabel *phoneLabel;
  17. @property (weak, nonatomic) IBOutlet UITextField *phoneFiled;
  18. @property (weak, nonatomic) IBOutlet UILabel *cityLabel;
  19. @property (weak, nonatomic) IBOutlet UITextField *cityFiled;
  20. @property (weak, nonatomic) IBOutlet UIImageView *cityImgView;
  21. @property (weak, nonatomic) IBOutlet UILabel *locationLabel;
  22. @property (weak, nonatomic) IBOutlet UIButton *addressButton;
  23. @property (weak, nonatomic) IBOutlet UILabel *smallAddressLabel;
  24. @property (weak, nonatomic) IBOutlet UITextField *smallAddressFiled;
  25. @property (weak, nonatomic) IBOutlet UILabel *defaultLabel;
  26. @property (weak, nonatomic) IBOutlet UITextField *defaultFiled;
  27. @property (weak, nonatomic) IBOutlet UISwitch *myWitch;
  28. @property (weak, nonatomic) IBOutlet UIView *lineView1;
  29. @property (weak, nonatomic) IBOutlet UIView *lineView2;
  30. @property (weak, nonatomic) IBOutlet UIView *lineView3;
  31. @property (weak, nonatomic) IBOutlet UIView *lineView4;
  32. @property (weak, nonatomic) IBOutlet UIView *lineView5;
  33. @end