Merge pull request #27 from jrsaruo/release-1.3.1 Release 1.3.1
Merge pull request #27 from jrsaruo/release-1.3.1
Release 1.3.1
Essentials for development using UIKit.
To use the UIKitEssentials library in a SwiftPM project, add the following line to the dependencies in your Package.swift file:
UIKitEssentials
Package.swift
.package(url: "https://github.com/jrsaruo/UIKitEssentials", from: "1.3.1"),
and add UIKitEssentials as a dependency for your target:
.target(name: "<target>", dependencies: [ .product(name: "UIKitEssentials", package: "UIKitEssentials"), // other dependencies ]),
Finally, add import UIKitEssentials in your source code.
import UIKitEssentials
UIKitEssentials
Essentials for development using UIKit.
Requirements
Using UIKitEssentials in your project
To use the
UIKitEssentials
library in a SwiftPM project, add the following line to the dependencies in yourPackage.swift
file:and add
UIKitEssentials
as a dependency for your target:Finally, add
import UIKitEssentials
in your source code.