LocationCell.h 463 B

123456789101112131415161718192021
  1. //
  2. // LocationCell.h
  3. // YBVideo
  4. //
  5. // Created by YunBao on 2018/7/23.
  6. // Copyright © 2018年 cat. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface LocationCell : UITableViewCell
  10. @property (weak, nonatomic) IBOutlet UILabel *addressL;
  11. @property (weak, nonatomic) IBOutlet UILabel *infoL;
  12. @property (weak, nonatomic) IBOutlet UIImageView *falgIV;
  13. +(LocationCell*)cellWithTab:(UITableView *)tableView andIndexPath:(NSIndexPath*)indexPath;
  14. @end