CaptureContext / swift-cocoa-extensions

Standard extensions for Cocoa

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

swift-cocoa-extensions

SwiftPM 5.6 Platforms @maximkrouk

Standard extensions for Cocoa

NOTE: The package is in beta (feel free suggest your improvements here)

Installation

Basic

You can add CocoaExtensions 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/swift-cocoa-extensions.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 StandardExtensions to your package file.

.package(
  name: "swift-cocoa-extensions",
  url: "https://github.com/capturecontext/swift-cocoa-extensions.git", 
  .upToNextMinor(from: "0.1.0")
)

Do not forget about target dependencies:

.product(
  name: "CocoaExtensions", 
  package: "swift-cocoa-extensions"
)

License

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

About

Standard extensions for Cocoa

License:MIT License


Languages

Language:Swift 100.0%