| 12345678910111213141516171819202122 |
- //
- // MapViewController.h
- // IBOSS
- //
- // Created by Dongke on 15/11/12.
- // Copyright © 2015年 elongtian. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import <Foundation/Foundation.h>
- @class LogAddViewController;
- @protocol PositionDelegate <NSObject>
- @optional
- - (void)relocationData:(NSString*)name;
- @end
- @interface MapViewController : BaseViewController
- //@property(nonatomic,weak) LogAddViewController *parentVC;
- @property(nonatomic,strong) id<PositionDelegate> pDelegate;
- @end
|