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
Swiftly
functions are now lowercased. This means.Left()
becomes.left()
,.Right()
becomes.right()
, etc. - All
Swiftly
functions no longer accept optionalUIView
s orUILayoutGuide
s. Instead, there are vars available for applying layouts without aSwiftlyable
reference.
Before:
view.applyLayout(.Left() == .Right(view))
After:
view.applyLayout(.left == .right(view))