You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

30 lines
504 B
Objective-C

//
// BMFMapViewHandle.h
// flutter_bmfmap
//
// Created by zbj on 2020/2/11.
//
#import <Flutter/Flutter.h>
@class BMFMapView;
NS_ASSUME_NONNULL_BEGIN
@protocol BMFMapViewHandler <NSObject>
@required
/// mapView (弱引用)
@property(nonatomic, weak) BMFMapView *_mapView;
/// 创建协议实例
- (NSObject <BMFMapViewHandler> *)initWith:(BMFMapView *)mapView;
/// flutter --> ios
- (void)handleMethodCall:(FlutterMethodCall *)call result:(FlutterResult)result;
@end
NS_ASSUME_NONNULL_END