Releases: Imperiopolis/Swiftly
Releases · Imperiopolis/Swiftly
Swift 4.2 Support
This release adds support for Swift 4.2. Swift 3.x is no longer supported. 3.x users should continue using the 1.0 release until migrating.
Swift 3.0 Support
This release adds support for Swift 3.0 along with several major, breaking API changes. Swift 2.x is no longer supported. 2.x users should continue using the 0.1.0 release until migrating.
- All
Swiftlyfunctions are now lowercased. This means.Left()becomes.left(),.Right()becomes.right(), etc. - All
Swiftlyfunctions no longer accept optionalUIViews orUILayoutGuides. Instead, there are vars available for applying layouts without aSwiftlyablereference.
Before:
view.applyLayout(.Left() == .Right(view))After:
view.applyLayout(.left == .right(view))