amap_map/ios/Classes/Util/AMapMethodCallDispatcher.h

28 lines
693 B
C
Raw Normal View History

2023-12-22 21:23:24 +08:00
//
// AMapMethodCallDispatcher.h
// amap_map
//
// Created by lly on 2020/11/16.
//
#import <Foundation/Foundation.h>
#import <Flutter/Flutter.h>
NS_ASSUME_NONNULL_BEGIN
/// methodCall的分发器该对象以Category的形式设置给FlutterMethodChannel作为FlutterMethodCallHandler
/// 再根据call.method来分发处理对应的处理block
@interface AMapMethodCallDispatcher : NSObject
- (void)onMethodCall:(FlutterMethodCall*)call result:(FlutterResult)result;
- (void)addMethodName:(NSString *)methodName withHandler:(FlutterMethodCallHandler)handler;
- (void)removeHandlerWithMethodName:(NSString *)methodName;
- (void)clearAllHandler;
@end
NS_ASSUME_NONNULL_END