JXNearMarkCell.h 590 B

1234567891011121314151617181920212223242526
  1. //
  2. // JXNearMarkCell.h
  3. // shiku_im
  4. //
  5. // Created by MacZ on 16/8/25.
  6. // Copyright © 2016年 Reese. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import <MapKit/MapKit.h>
  10. #import "JXPlaceMarkModel.h"
  11. #define NEAERMAEK_CELL_HEIGHT 50
  12. @interface JXNearMarkCell : UITableViewCell
  13. @property (nonatomic,strong) UIImageView *markImgView;
  14. @property (nonatomic,strong) UILabel *markName;
  15. @property (nonatomic,strong) UILabel *markPlace;
  16. @property (nonatomic,strong) UIImageView *selFlag;
  17. - (void)refreshWith:(MKMapItem *)item;
  18. - (void)refreshWithModel:(JXPlaceMarkModel *)model;
  19. @end