- Notifications
You must be signed in to change notification settings - Fork2k
A Swift Autolayout DSL for iOS & OS X
License
SnapKit/SnapKit
Folders and files
| Name | Name | Last commit message | Last commit date | |
|---|---|---|---|---|
Repository files navigation
SnapKit is a DSL to make Auto Layout easy on both iOS and OS X.
- iOS 12.0+ / Mac OS X 10.13+ / tvOS 10.0+
- Xcode 10.0+
- Swift 4.0+
- If youneed help, useStack Overflow. (Tag 'snapkit')
- If you'd like toask a general question, useStack Overflow.
- If youfound a bug, open an issue.
- If youhave a feature request, open an issue.
- If youwant to contribute, submit a pull request.
CocoaPods is a dependency manager for Cocoa projects. You can install it with the following command:
$ gem install cocoapods
CocoaPods 1.1.0+ is required to build SnapKit 4.0.0+.
To integrate SnapKit into your Xcode project using CocoaPods, specify it in yourPodfile:
source'https://github.com/CocoaPods/Specs.git'platform:ios,'12.0'use_frameworks!target'<Your Target Name>'dopod'SnapKit','~> 5.7.0'end
Then, run the following command:
$ pod install
Carthage is a decentralized dependency manager that builds your dependencies and provides you with binary frameworks.
You can install Carthage withHomebrew using the following command:
$ brew update$ brew install carthage
To integrate SnapKit into your Xcode project using Carthage, specify it in yourCartfile:
github "SnapKit/SnapKit" ~> 5.0.0Runcarthage update to build the framework and drag the builtSnapKit.framework into your Xcode project.
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.
Xcode 11+ is required to build SnapKit using Swift Package Manager.
To integrate SnapKit into your Xcode project using Swift Package Manager, add it to the dependencies value of yourPackage.swift:
dependencies:[.package(url:"https://github.com/SnapKit/SnapKit.git",.upToNextMajor(from:"5.0.1"))]
If you prefer not to use either of the aforementioned dependency managers, you can integrate SnapKit into your project manually.
import SnapKitclassMyViewController:UIViewController{ lazyvarbox=UIView()overridefunc viewDidLoad(){ super.viewDidLoad()self.view.addSubview(box) box.backgroundColor=.green box.snp.makeConstraints{(make)->Voidin make.width.height.equalTo(50) make.center.equalTo(self.view)}}}
You can try SnapKit in Playground.
Note:
To try SnapKit in playground, open
SnapKit.xcworkspaceand build SnapKit.framework for any simulator first.
- Robert Payne (@robertjpayne)
- Many other contributors
SnapKit is released under the MIT license. See LICENSE for details.
About
A Swift Autolayout DSL for iOS & OS X
Topics
Resources
License
Contributing
Uh oh!
There was an error while loading.Please reload this page.
Stars
Watchers
Forks
Packages0
Uh oh!
There was an error while loading.Please reload this page.
