PlaceTableViewCell.h 538 B

123456789101112131415161718192021
  1. //
  2. // PlaceTableViewCell.h
  3. // BuguLive
  4. //
  5. // Created by fanwe2014 on 16/10/19.
  6. // Copyright © 2016年 xfg. All rights reserved.
  7. #import <UIKit/UIKit.h>
  8. @class ListModel;
  9. @interface PlaceTableViewCell : UITableViewCell
  10. @property (weak, nonatomic) IBOutlet UIImageView *rightImgView;
  11. @property (weak, nonatomic) IBOutlet UILabel *nameLabel;
  12. @property (weak, nonatomic) IBOutlet UILabel *placeLabel;
  13. @property (weak, nonatomic) IBOutlet UIButton *addressButton;
  14. - (void)creatCellWithModel:(ListModel *)model andRow:(int)row;
  15. @end