MapViewController.h 494 B

12345678910111213141516171819202122
  1. //
  2. // MapViewController.h
  3. // IBOSS
  4. //
  5. // Created by Dongke on 15/11/12.
  6. // Copyright © 2015年 elongtian. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import <Foundation/Foundation.h>
  10. @class LogAddViewController;
  11. @protocol PositionDelegate <NSObject>
  12. @optional
  13. - (void)relocationData:(NSString*)name;
  14. @end
  15. @interface MapViewController : BaseViewController
  16. //@property(nonatomic,weak) LogAddViewController *parentVC;
  17. @property(nonatomic,strong) id<PositionDelegate> pDelegate;
  18. @end