Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jrsaruo/uikitessentials
Essentials for development using UIKit.
https://github.com/jrsaruo/uikitessentials
extensions ios uikit
Last synced: about 1 month 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 2 years ago)
- Default Branch: main
- Last Pushed: 2023-09-22T14:48:18.000Z (over 1 year ago)
- Last Synced: 2024-03-15T11:04:29.498Z (9 months ago)
- Topics: extensions, ios, uikit
- Language: Swift
- Homepage:
- Size: 48.8 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.