https://github.com/jrsaruo/uikitessentials
Essentials for development using UIKit.
https://github.com/jrsaruo/uikitessentials
extensions ios uikit
Last synced: 4 months ago
JSON representation
Essentials for development using UIKit.
- Host: GitHub
- URL: https://github.com/jrsaruo/uikitessentials
- Owner: jrsaruo
- License: mit
- Created: 2022-04-11T13:17:26.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2024-06-30T13:11:05.000Z (about 1 year ago)
- Last Synced: 2024-11-20T10:15:54.252Z (8 months ago)
- Topics: extensions, ios, uikit
- Language: Swift
- Homepage:
- Size: 58.6 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# UIKitEssentials
Essentials for development using UIKit.
## Requirements
- iOS 12.0+ / tvOS 12.0+ / visionOS 1.0+
- Swift 5.9+## Using UIKitEssentials in your project
To use the `UIKitEssentials` library in a SwiftPM project, add the following line to the dependencies in your `Package.swift` file:
```swift
.package(url: "https://github.com/jrsaruo/UIKitEssentials", from: "1.4.0"),
```and add `UIKitEssentials` as a dependency for your target:
```swift
.target(name: "", dependencies: [
.product(name: "UIKitEssentials", package: "UIKitEssentials"),
// other dependencies
]),
```Finally, add `import UIKitEssentials` in your source code.