Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bytedance/dcframe
DCFrame is a Swift UI collection framework, which can easily create complex UI.
https://github.com/bytedance/dcframe
ios swift xcode
Last synced: 15 days ago
JSON representation
DCFrame is a Swift UI collection framework, which can easily create complex UI.
- Host: GitHub
- URL: https://github.com/bytedance/dcframe
- Owner: bytedance
- License: mit
- Created: 2020-08-04T07:36:20.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2024-07-11T03:30:31.000Z (7 months ago)
- Last Synced: 2025-01-05T21:07:42.760Z (22 days ago)
- Topics: ios, swift, xcode
- Language: Swift
- Homepage:
- Size: 8.05 MB
- Stars: 106
- Watchers: 7
- Forks: 7
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
------
DCFrame is a powerful UI collecion framework, it can be easily achieved:
1. Assemble and manage complex UI modules;
2. Reuse and migrate UI modules at no cost;
3. Communication between UI modules without coupling.## Requirements
* Xcode 10.2+
* iOS 11.0+
* Swift 5.0+## Installation
### Cocoapods
[CocoaPods](https://cocoapods.org) is a dependency manager for Cocoa projects. For usage and installation instructions, visit their website. To integrate DCFrame into your Xcode project using CocoaPods, specify it in your `Podfile`:
```ruby
pod 'DCFrame'
```### Carthage
[Carthage](https://github.com/Carthage/Carthage) is a decentralized dependency manager that builds your dependencies and provides you with binary frameworks. To integrate DCFrame into your Xcode project using Carthage, specify it in your `Cartfile`:
```ruby
github "bytedance/DCFrame"
```### Swift Package Manager
[Swift Package Manager](https://github.com/apple/swift-package-manager) is a tool for managing the distribution of Swift code. It’s integrated with the Swift build system to automate the process of downloading, compiling, and linking dependencies. To integrate DCFrame into your Xcode project using Swift Package Manager, add it to the dependencies value of your Package.swift:
```swift
dependencies: [
.package(url: "https://github.com/bytedance/DCFrame.git", .upToNextMajor(from: "1.1.0"))
]
```## Examples
We can quickly get started with DCFrame through the Examples. We provide some examples in the project, simply pull the git repo and open 'DCFrameExample.xcodeproj' in the 'DCFrameExample' folder.
## License
DCFrame is available under the MIT license. See the LICENSE file for more info.