react-native-vision-camera/package/ios
Marc Rousavy 1b90bc9620
fix: Fix a race condition that caused audio to not be configured (#2144)
* fix: Fix a race condition that caused audio to not be configured

* Update CameraSession.swift

* fix: Fix `audioOutput` being deleted
2023-11-10 12:08:39 +01:00
..
Core fix: Fix a race condition that caused audio to not be configured (#2144) 2023-11-10 12:08:39 +01:00
Extensions fix: Set sensorOrientation to landscapeRight 2023-10-19 17:02:07 +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 fix: Fix Video codec, bitRate and flash being ignored on iOS (#2113) 2023-10-31 15:09:27 +01: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 Xcode 15 build error (var instead of let) (#2048) 2023-10-19 17:43:20 +02:00
CameraView.swift feat: Implement cornerPoints and frame for scanned codes (#2117) 2023-11-09 11:57:05 +01: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.