From 7a8fe598cd9a87cb2219f336e4519521288e4452 Mon Sep 17 00:00:00 2001 From: "pengfei.zhou" Date: Mon, 2 Aug 2021 11:40:52 +0800 Subject: [PATCH] iOS:fix callEntity pass param error. --- doric-iOS/Pod/Classes/DoricNativeDriver.m | 2 -- 1 file changed, 2 deletions(-) diff --git a/doric-iOS/Pod/Classes/DoricNativeDriver.m b/doric-iOS/Pod/Classes/DoricNativeDriver.m index fd92877d..7e5e37e1 100644 --- a/doric-iOS/Pod/Classes/DoricNativeDriver.m +++ b/doric-iOS/Pod/Classes/DoricNativeDriver.m @@ -109,8 +109,6 @@ - (DoricAsyncResult *)invokeDoricMethod:(NSString *)method argumentsArray:(NSArr - (DoricAsyncResult *)invokeContextEntity:(NSString *)contextId method:(NSString *)method arguments:(va_list)args { NSMutableArray *array = [[NSMutableArray alloc] init]; - [array addObject:contextId]; - [array addObject:method]; id arg = va_arg(args, id); while (arg != nil) { [array addObject:arg];