/Users/christiangossain/Dev/Open Source/Debounce/Example/Debounce/ViewController.swift
To run the example project, clone the repo, and run pod install
from the Example directory first.
CocoaPods is a dependency manager for Cocoa projects. For usage and installation instructions, visit their website. To integrate Debounce into your Xcode project using CocoaPods, specify it in your Podfile
:
pod 'Debounce', '~> 1.5.1'
The Swift Package Manager is a tool for automating the distribution of Swift code and is integrated into the swift
compiler.
Once you have your Swift package set up, adding Debounce as a dependency is as easy as adding it to the dependencies
value of your Package.swift
.
dependencies: [
.package(url: "https://github.com/cgossain/Debounce.git", .upToNextMajor(from: "1.5.1"))
]
Christian Gossain, cgossain@gmail.com
Debounce is available under the MIT license. See the LICENSE file for more info.