SearchResultView.h 678 B

1234567891011121314151617181920212223242526272829
  1. //
  2. // SearchResultView.h
  3. // YBVideo
  4. //
  5. // Created by YunBao on 2018/7/20.
  6. // Copyright © 2018年 cat. All rights reserved.
  7. //
  8. #define SearchResultGetPoiSearchResult @"SearchResultGetPoiSearchResult"
  9. #import <UIKit/UIKit.h>
  10. #import <QMapSearchKit/QMapSearchKit.h>
  11. typedef void (^ResultVDismissBlock)(QMSPoiData* reult);
  12. @interface SearchResultView : UIView
  13. @property (nonatomic, strong)void(^searchResultsPage)(NSInteger page);
  14. @property(nonatomic,copy)ResultVDismissBlock dismissEvent;
  15. @property (nonatomic,strong)NSMutableArray <QMSPoiData*>* dataSource;
  16. @property (nonatomic,strong)UITableView *tableView;
  17. @property (nonatomic,assign)NSInteger pageIndex;
  18. @end