Commit 5c3b3bf564e972b65d011def6ed11c50d822d851
Merge branch 'master' of bj.gitlab.cnlive.com:ios-team/CNLiveServices
Showing
2 changed files
with
29 additions
and
0 deletions
CNLiveServices/Classes/CNLiveServices.h
CNLiveServices/Classes/NetHome/CNLiveSendPositionProtocol.h
0 → 100644
| 1 | +// | |
| 2 | +// CNLiveSendPositionProtocol.h | |
| 3 | +// CNLiveBeeHive | |
| 4 | +// | |
| 5 | +// Created by open on 2019/11/22. | |
| 6 | +// | |
| 7 | + | |
| 8 | +#import <Foundation/Foundation.h> | |
| 9 | +#import "BHServiceProtocol.h" | |
| 10 | +#import <MapKit/MapKit.h> | |
| 11 | + | |
| 12 | +//////发送位置delegate/////// | |
| 13 | +@protocol CNLiveSendPositonDelegate <NSObject> | |
| 14 | + | |
| 15 | +- (void)sendCurrentLocation:(CLLocationCoordinate2D)location image:(NSString *)img addressName:(NSArray *)arr; | |
| 16 | + | |
| 17 | +@end | |
| 18 | + | |
| 19 | +//////////// | |
| 20 | + | |
| 21 | +@protocol CNLiveSendPositionProtocol <NSObject,BHServiceProtocol> | |
| 22 | + | |
| 23 | +- (void)pushToMapViewController:(id)delegate; | |
| 24 | +//位置信息详情VC | |
| 25 | +- (UIViewController *)getMapDetailViewController; | |
| 26 | +- (void)pushToMapDetailViewController; | |
| 27 | +@end | |
| 28 | + | ... | ... |