20 lines
476 B
Objective-C
20 lines
476 B
Objective-C
//
|
|
// AMapNavHttpUtil.h
|
|
// AMapNavIOSSDK
|
|
//
|
|
// Created by admin on 2026/2/11.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface AMapNavHttpUtil : NSObject
|
|
|
|
+ (void)postRequestWithURL:(NSString *)urlString parameters:(id)parameters requestHeader:(NSDictionary *)headParam successHandler:(void (^)(NSDictionary *data, NSURLResponse *response))successHandler failureHandler:(void ( ^)(NSError *error))failureHandler;
|
|
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|