2
0

WFCULocationViewController.h 630 B

12345678910111213141516171819202122232425262728
  1. //
  2. // LocationViewController.h
  3. // WFChat UIKit
  4. //
  5. // Created by WF Chat on 2017/10/28.
  6. // Copyright © 2017年 WildFireChat. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import <MapKit/MapKit.h>
  10. @class WFCULocationPoint;
  11. @protocol LocationViewControllerDelegate <NSObject>
  12. - (void)onSendLocation:(WFCULocationPoint *)locationPoint;
  13. @end
  14. @interface WFCULocationViewController : UIViewController<MKMapViewDelegate>
  15. //选择地理位置
  16. - (instancetype)initWithDelegate:(id<LocationViewControllerDelegate>)delegate;
  17. //显示地理位置
  18. - (instancetype)initWithLocationPoint:(WFCULocationPoint *)locationPoint;
  19. @end