MohammadRezaAnsari / ExtensionKit

A collection of useful extensions for the Swift Standard Library, Foundation, and UIKit.

Home Page:https://www.linkedin.com/in/mohammadrezaansary

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

ExtensionKit

Platforms SPM compatible Swift Xcode MIT

A collection of useful extensions for the Swift Standard Library, Foundation, and UIKit.

Requirements

  • iOS 9.0+
  • Swift 5.0+

Installation

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"]),
    ]
)

Contributors

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! 🙏

About

A collection of useful extensions for the Swift Standard Library, Foundation, and UIKit.

https://www.linkedin.com/in/mohammadrezaansary


Languages

Language:Swift 100.0%