react-native-vision-camera/package/ios
Marc Rousavy 85564d6d02
fix: Remove unused Error codes (#1887)
* fix: Remove unused Errors

* Errors.kt -> CameraError.kt

* fix: remove .system
2023-09-29 21:54:35 +02:00
..
Extensions feat: Add support for Buffer Compression for a more efficient Video Pipeline (enableBufferCompression) (#1828) 2023-09-21 17:18:54 +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 fix: Remove unused Error codes (#1887) 2023-09-29 21:54:35 +02:00
React Utils chore: Move everything into package/ (#1745) 2023-09-01 18:15:28 +02:00
Types feat: Implement resizeMode prop for iOS (#1838) 2023-09-23 10:14:27 +02:00
VisionCamera.xcodeproj feat: Implement resizeMode prop for iOS (#1838) 2023-09-23 10:14:27 +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: Allow nil preferredDevice 2023-09-27 12:51:38 +02:00
CameraError.swift fix: Remove unused Error codes (#1887) 2023-09-29 21:54:35 +02:00
CameraQueues.swift chore: Move everything into package/ (#1745) 2023-09-01 18:15:28 +02:00
CameraView.swift feat: Implement resizeMode prop for iOS (#1838) 2023-09-23 10:14:27 +02:00
CameraView+AVAudioSession.swift chore: Move everything into package/ (#1745) 2023-09-01 18:15:28 +02:00
CameraView+AVCaptureSession.swift fix: Use compressed buffer format as default format as well (#1884) 2023-09-29 15:27:17 +02:00
CameraView+Focus.swift chore: Move everything into package/ (#1745) 2023-09-01 18:15:28 +02:00
CameraView+Orientation.swift chore: Move everything into package/ (#1745) 2023-09-01 18:15:28 +02:00
CameraView+RecordVideo.swift feat: Add customizable Video Bit Rate (videoBitRate) (#1882) 2023-09-29 15:27:09 +02:00
CameraView+TakePhoto.swift chore: Move everything into package/ (#1745) 2023-09-01 18:15:28 +02:00
CameraView+Torch.swift chore: Move everything into package/ (#1745) 2023-09-01 18:15:28 +02:00
CameraView+Zoom.swift chore: Move everything into package/ (#1745) 2023-09-01 18:15:28 +02:00
CameraViewManager.m docs: New V3 docs for new API (#1842) 2023-09-25 12:57:03 +02:00
CameraViewManager.swift feat: New JS API for useCameraDevice and useCameraFormat and much faster getAvailableCameraDevices() (#1784) 2023-09-21 11:20:33 +02:00
PhotoCaptureDelegate.swift fix: Fix potential bug in Photo Orientation (#1765) 2023-09-06 11:30:58 +02:00
PreviewView.swift feat: Implement resizeMode prop for iOS (#1838) 2023-09-23 10:14:27 +02:00
README.md chore: Move everything into package/ (#1745) 2023-09-01 18:15:28 +02:00
RecordingSession.swift 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.