AddressTableViewCell.h 495 B

123456789101112131415161718
  1. //
  2. // AddressTableViewCell.h
  3. // BuguLive
  4. //
  5. // Created by fanwe2014 on 16/8/10.
  6. // Copyright © 2016年 xfg. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface AddressTableViewCell : UITableViewCell
  10. @property (weak, nonatomic) IBOutlet UIImageView *addAddressImgView;
  11. @property (weak, nonatomic) IBOutlet UIImageView *rightImgView;
  12. @property (weak, nonatomic) IBOutlet UILabel *namePhoneLabel;
  13. @property (weak, nonatomic) IBOutlet UILabel *addressLabel;
  14. @end