Skip to content

Appsaurus/UIKitExtensions

Repository files navigation

UIKitExtensions

Description + docs coming soon

Installation

Xcode Projects

Select File -> Swift Packages -> Add Package Dependency and enter https://github.com/Apppsaurus/UIKitExtensions.

Swift Package Manager Projects

You can add UIKitExtensions as a package dependency in your Package.swift file:

let package = Package(
    //...
    dependencies: [
        .package(
            name: "UIKitExtensions",
            url: "https://github.com/Apppsaurus/UIKitExtensions"
        ),
    ],
    //...
)

From there, refer to the UIKitExtensions "product" delivered by the UIKitExtensions "package" inside of any of your project's target dependencies:

targets: [
    .target(
        name: "UIKitExtensions",
        dependencies: [
            .product(
                name: "UIKitExtensions",
                package: "UIKitExtensions"
            ),
        ],
        ...
    ),
    ...
]

Then simply import UIKitExtensions wherever you’d like to use it.

Usage

Requirements

  • Xcode 13.0+

📜 Creating & Building Documentation

Documentation is built with Xcode's DocC. See Apple's guidance on how to build, run, and create DocC content.

🏷 License

UIKitExtensions is available under the MIT license. See the LICENSE file for more info.

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Packages

No packages published