react-native-vision-camera/package/ios
Marc Rousavy 07027d8010
fix: Rename getFrameProcessorPlugin to initFrameProcessorPlugin (#2038)
* fix: Rename `getFrameProcessorPlugin` to `initFrameProcessorPlugin`

* fix: Make nullable, add comments

* Format

* Update FrameProcessorPlugin.java

* Update FrameProcessorPlugin.h

* fix: Fix dead links

* Call super constructor

* Update ExampleFrameProcessorPlugin.java

* fix: Init calls
2023-10-19 11:19:47 +02:00
..
Core fix: Fix torch not working on iOS (#2031) 2023-10-18 18:04:58 +02:00
Extensions fix: Fix build on Xcode 14 (#2033) 2023-10-18 18:25:30 +02:00
Frame Processor fix: Rename getFrameProcessorPlugin to initFrameProcessorPlugin (#2038) 2023-10-19 11:19:47 +02:00
Parsers feat: New Core/ library (#1975) 2023-10-13 18:33:20 +02:00
React Utils chore: Move everything into package/ (#1745) 2023-09-01 18:15:28 +02:00
Types chore: Rename CodeScanner to CodeScannerOptions in native (#2010) 2023-10-16 16:56:39 +02:00
VisionCamera.xcodeproj chore: Rename CodeScanner to CodeScannerOptions in native (#2010) 2023-10-16 16:56:39 +02:00
.swift-version chore: Move everything into package/ (#1745) 2023-09-01 18:15:28 +02:00
.swiftformat chore: Move everything into package/ (#1745) 2023-09-01 18:15:28 +02:00
.swiftlint.yml chore: Move everything into package/ (#1745) 2023-09-01 18:15:28 +02:00
CameraBridge.h feat: New JS API for useCameraDevice and useCameraFormat and much faster getAvailableCameraDevices() (#1784) 2023-09-21 11:20:33 +02:00
CameraDevicesManager.m feat: New JS API for useCameraDevice and useCameraFormat and much faster getAvailableCameraDevices() (#1784) 2023-09-21 11:20:33 +02:00
CameraDevicesManager.swift fix: Fix build on Xcode 14 (#2033) 2023-10-18 18:25:30 +02:00
CameraView.swift chore: Rename CodeScanner to CodeScannerOptions in native (#2010) 2023-10-16 16:56:39 +02:00
CameraView+Focus.swift feat: New Core/ library (#1975) 2023-10-13 18:33:20 +02:00
CameraView+RecordVideo.swift feat: New Core/ library (#1975) 2023-10-13 18:33:20 +02:00
CameraView+TakePhoto.swift feat: New Core/ library (#1975) 2023-10-13 18:33:20 +02:00
CameraView+Zoom.swift feat: New Core/ library (#1975) 2023-10-13 18:33:20 +02:00
CameraViewManager.m feat: New Core/ library (#1975) 2023-10-13 18:33:20 +02:00
CameraViewManager.swift feat: New Core/ library (#1975) 2023-10-13 18:33:20 +02:00
README.md chore: Move everything into package/ (#1745) 2023-09-01 18:15:28 +02:00

ios

This folder contains the iOS-platform-specific code for react-native-vision-camera.

Prerequesites

  1. Install Xcode tools
    xcode-select --install
    
  2. Install need SwiftFormat and SwiftLint
    brew install swiftformat swiftlint
    

Getting Started

It is recommended that you work on the code using the Example project (example/ios/VisionCameraExample.xcworkspace), since that always includes the React Native header files, plus you can easily test changes that way.

You can however still edit the library project here by opening VisionCamera.xcodeproj, this has the advantage of automatically formatting your Code (swiftformat) and showing you Linter errors (swiftlint) when trying to build (+B).

Committing

Before committing, make sure that you're not violating the Swift or C++ codestyles. To do that, run the following command:

yarn check-ios

This will also try to automatically fix any errors by re-formatting the Swift code.