Good Extensions is a collection of useful and frequently used Swift extensions for iOS development. These extensions aim to simplify and streamline common tasks, making it easier for developers to write clean and concise code.
Create a Package.swift
file and add the package dependency into the dependencies list.
Or to integrate without package.swift add it through the Xcode add package interface.
import PackageDescription
let package = Package(
name: "SampleProject",
dependencies: [
.package(url: "https://github.com/GoodRequest/GoodExtensions-iOS", .upToNextMajor("2.0.0")
]
)
GoodExtensions is released under the MIT license. See LICENSE for details.