react-native-vision-camera/package/ios
Marc Rousavy ea98112a21
fix: Fix basic Orientation on iOS (#2000)
* fix: Fix basic Orientation on iOS

* ci: Use macOS 13 runner for latest Xcode 15

* chore: Remove Xcode 15 checks

* Format
2023-10-14 13:17:14 +02:00
..
Core fix: Fix torch not turning off after it has been enabled (#1997) 2023-10-13 18:44:44 +02:00
Extensions fix: Fix basic Orientation on iOS (#2000) 2023-10-14 13:17:14 +02:00
Frame Processor feat: Add support for Buffer Compression for a more efficient Video Pipeline (enableBufferCompression) (#1828) 2023-09-21 17:18:54 +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 basic Orientation on iOS (#2000) 2023-10-14 13:17:14 +02:00
VisionCamera.xcodeproj feat: New Core/ library (#1975) 2023-10-13 18:33:20 +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 basic Orientation on iOS (#2000) 2023-10-14 13:17:14 +02:00
CameraView.swift fix: Fix FpsGraph not updating 2023-10-14 12:41:53 +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.