CocoaPods trunk is moving to be read-only. Read more on the blog, there are 11 months to go.
| TestsTested | ✗ |
| LangLanguage | SwiftSwift |
| License | MIT |
| ReleasedLast Release | Mar 2018 |
| SPMSupports SPM | ✗ |
Maintained by Andres Cecilia Luque.
Syntactic sugar for init UIEdgeInsets and other similar objects.
Remember to import SugarEdges at the top of the file:
import SugarEdgesThen, instead of initiating like this:
let insets: UIEdgeInsets = UIEdgeInsets(top: 20, left: 10, bottom: 0, right: 10)You can do it like this:
let insets: UIEdgeInsets = [.top: 20, .left + .right: 10]If you want to use this kind of initialization for other types, just make them conform to the ExpressibleByEdgesDictionaryLiteral protocol.
To run the example project, clone the repo, and open the workspace found under the Example folder with Xcode.
SugarEdges is available through CocoaPods. To install
it, simply add the following line to your Podfile:
pod 'SugarEdges'Andrés Cecilia Luque (acecilia) [email protected]
SugarEdges is available under the MIT license. See the LICENSE file for more info.