Skip to content

Appsaurus/UIKitBase

Repository files navigation

UIKitBase

Description + docs coming soon

Installation

Xcode Projects

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

Swift Package Manager Projects

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

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

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

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

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

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

UIKitBase 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