A collection of useful extensions for the Swift Standard Library, Foundation, and UIKit.
- iOS 9.0+
- Swift 5.0+
You can use The Swift Package Manager
to install SocketKit
by adding the proper description to your
Once you have your Swift package set up, adding SocketKit
as a dependency is as easy as adding it to the dependencies value of your Package.swift.
https://github.com/MohammadRezaAnsari/ExtensionKit
Alternatively, you can add SocketKit as a dependency in your Package.swift
file. For example:
// swift-tools-version:5.1
import PackageDescription
let package = Package(
name: "PackageName",
products: [
.library(
name: "PackageName",
targets: ["YourPackage"]),
],
dependencies: [
.package(url: "https://github.com/MohammadRezaAnsari/ExtensionKit", from: "1.6.0"),
],
targets: [
.target(
name: "PackageName",
dependencies: ["ExtensionKit"]),
]
)
The complete list of people who contributed to this project is available here. ExtensionKit wouldn't be what it is without you! Thank you very much! 🙏