EnterAdrssCell.h 472 B

1234567891011121314151617181920
  1. //
  2. // EnterAdrssCell.h
  3. // O2O
  4. //
  5. // Created by fanwe2014 on 15/7/28.
  6. // Copyright (c) 2015年 fanwe. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface EnterAdrssCell : UITableViewCell
  10. @property (weak, nonatomic) IBOutlet UILabel *adressName;
  11. @property (weak, nonatomic) IBOutlet UILabel *descriptionText;
  12. - (void)setCellContent:(NSString *)adressName description:(NSString *)description;
  13. + (instancetype)cellWithTableView:(UITableView *)tableView;
  14. @end