Skip to content

Releases: Imperiopolis/Swiftly

Swift 4.2 Support

19 Sep 19:27
Compare
Choose a tag to compare

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

15 Sep 19:42
Compare
Choose a tag to compare

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 optional UIViews or UILayoutGuides. Instead, there are vars available for applying layouts without a Swiftlyable reference.

Before:

view.applyLayout(.Left() == .Right(view))

After:

view.applyLayout(.left == .right(view))