comparison mupdf-source/thirdparty/zxing-cpp/wrappers/ios/README.md @ 3:2c135c81b16c

MERGE: upstream PyMuPDF 1.26.4 with MuPDF 1.26.7
author Franz Glasner <fzglas.hg@dom66.de>
date Mon, 15 Sep 2025 11:44:09 +0200
parents b50eed0cc0ef
children
comparison
equal deleted inserted replaced
0:6015a75abc2d 3:2c135c81b16c
1 # ZXingCpp iOS Framework
2
3 ## Installation
4
5 ### SwiftPM
6
7 As this repository provides a `Package.swift` on the root level, so you can add `zxing-cpp` including wrapper code by adding a Package Dependency in Xcode.
8
9 An alternative way is to check this repository out and add it as a local Swift Package by adding it as a dependency to your app.
10
11 ### CocoaPods
12
13 You can also use [CocoaPods](https://cocoapods.org/pods/zxing-cpp). Just add the Pod as a dependency:
14
15 ```
16 pod 'zxing-cpp'
17 ```
18 The module to be imported is named `ZXingCpp`. If you just need the core without the wrapper code, you can use:
19 ```
20 pod 'zxing-cpp/Core'
21 ```
22
23 ## Usage
24
25 For general usage of the ObjectiveC/Swift wrapper, please have a look at the source code provided in the [demo project](demo).