CaptureContext / combine-cocoa

Cocoa extensions for Apple Combine framework.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

combine-cocoa

CI SwiftPM 5.9 Platforms @maximkrouk

Cocoa extensions for Apple Combine framework.

NOTE: The package is in beta

Installation

Basic

You can add CombineCocoa to an Xcode project by adding it as a package dependency.

  1. From the File menu, select Swift Packages › Add Package Dependency…
  2. Enter "https://github.com/capturecontext/combine-cocoa.git" into the package repository URL text field
  3. Choose products you need to link them to your project.

Recommended

If you use SwiftPM for your project, you can add CombineCocoa to your package file.

.package(
  url: "https://github.com/capturecontext/combine-cocoa.git",
  .upToNextMinor(from: "0.2.0")
)

Do not forget about target dependencies:

.product(
  name: "CombineCocoa", 
  package: "combine-cocoa"
)
.product(
  name: "CombineCocoaMacros", 
  package: "combine-cocoa"
)

License

This library is released under the MIT license. See LICENCE for details.

See [ACKNOWLEDGMENTS][ACKNOWLEDGMENTS] for inspiration references and their licences.

About

Cocoa extensions for Apple Combine framework.

License:MIT License


Languages

Language:Swift 97.0%Language:Makefile 3.0%