react-native-vision-camera/package/ios
2024-01-26 10:20:55 +01:00
..
Core fix: Catch insufficient-storage errors (#2422) 2024-01-24 11:48:38 +01:00
Extensions chore: Remove unused file AVCaptureConnection+setInterfaceOrientation.swift 2024-01-26 10:20:55 +01:00
Frame Processor feat: SharedArray:wrapData:withSize init for iOS (#2410) 2024-01-18 10:41:26 +01:00
Parsers
React Utils
Types
VisionCamera.xcodeproj chore: Remove unused file AVCaptureConnection+setInterfaceOrientation.swift 2024-01-26 10:20:55 +01:00
.swift-version
.swiftformat
.swiftlint.yml
CameraBridge.h
CameraDevicesManager.m
CameraDevicesManager.swift
CameraView.swift fix: Prevent phone from going to sleep if Camera is active (#2421) 2024-01-19 12:35:33 +01:00
CameraView+Focus.swift
CameraView+RecordVideo.swift
CameraView+TakePhoto.swift
CameraView+Zoom.swift
CameraViewManager.m
CameraViewManager.swift
README.md

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.