// // NTESLocationViewController.h // NIM // // Created by chris on 15/2/28. // Copyright (c) 2015年 Netease. All rights reserved. // #import #import @class NTESLocationPoint; @protocol NTESLocationViewControllerDelegate - (void)onSendLocation:(NTESLocationPoint*)locationPoint; @end @interface NTESLocationViewController : UIViewController @property(nonatomic,strong) IBOutlet MKMapView *mapView; @property(nonatomic,weak) id delegate; - (instancetype)initWithLocationPoint:(NTESLocationPoint*)locationPoint; @end