You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
484 B
18 lines
484 B
// |
|
// RailSearchAddressVC.h |
|
// tongxin |
|
// |
|
// Created by WeiChaoZheng on 2018/11/10. |
|
// Copyright © 2018年 xTT. All rights reserved. |
|
// |
|
|
|
|
|
#import "baseTabViewController.h" |
|
#import <AMapFoundationKit/AMapFoundationKit.h> |
|
#import <AMapSearchKit/AMapSearchKit.h> |
|
|
|
typedef void(^SelectAddressCallBack)(NSString *searchResult, AMapGeoPoint *point); |
|
@interface RailSearchAddressVC : baseTabViewController |
|
@property (copy , nonatomic) SelectAddressCallBack selectAddressCallBack; |
|
|
|
@end
|
|
|