From a2311c02acfe0d5179f0d6197c14044de744b738 Mon Sep 17 00:00:00 2001 From: Marc Rousavy Date: Thu, 24 Jun 2021 12:12:43 +0200 Subject: [PATCH] Update FRAME_PROCESSOR_CREATE_PLUGIN_IOS.mdx --- docs/docs/guides/FRAME_PROCESSOR_CREATE_PLUGIN_IOS.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/docs/guides/FRAME_PROCESSOR_CREATE_PLUGIN_IOS.mdx b/docs/docs/guides/FRAME_PROCESSOR_CREATE_PLUGIN_IOS.mdx index a626037..47f00ad 100644 --- a/docs/docs/guides/FRAME_PROCESSOR_CREATE_PLUGIN_IOS.mdx +++ b/docs/docs/guides/FRAME_PROCESSOR_CREATE_PLUGIN_IOS.mdx @@ -51,7 +51,7 @@ VISION_EXPORT_FRAME_PROCESSOR(scanQRCodes) 4. **Implement your Frame Processing.** See the [QR Code Plugin (Objective-C)](https://github.com/mrousavy/react-native-vision-camera/blob/main/example/ios/Frame%20Processor%20Plugins/QR%20Code%20Plugin%20%28Objective%2DC%29) for reference. :::note -The JS function name will be equal to the Objective-C function name you choose (with a `__` prefix). Make sure it is unique across other Frame Processor Plugins, and doesn't shadow a JS runtime variable. +The JS function name will be equal to the Objective-C function name you choose (with a `__` prefix). Make sure it is unique across other Frame Processor Plugins. ::: @@ -78,7 +78,7 @@ The JS function name will be equal to the Objective-C function name you choose ( ``` :::note -The first parameter in the Macro specifies the JS function name. Make sure it is unique across other Frame Processors, and doesn't shadow a JS runtime variable (such as `Map`, `Number`, ...) +The first parameter in the Macro specifies the JS function name. Make sure it is unique across other Frame Processors. ::: 4. In the Swift file, add the following code: