PinLayout Versions Save

Fast Swift Views layouting without auto layout. No magic, pure code, full control and blazing fast. Concise syntax, intuitive, readable & chainable. [iOS/macOS/tvOS/CALayer]

1.10.5

6 months ago

UIScree.main will be deprecated in a future version of iOS.

Added by Hyungyu Kim in Pull Request #275

1.10.4

1 year ago

1.10.3

1 year ago

Fix an error while using Xcode live preview with PinLayout. An internal class has been renamed.

Added by Luc Dion in Pull Request #251

1.10.2

2 years ago

Renamed property pin.keyboardMargins -> pin.keyboardArea. This new name better represent what UIKit's UIView.keyboardLayoutGuide is

Added by Luc Dion in Pull Request #243

1.10.1

2 years ago

New property pin.keyboardMargins

  • UIView.pin.keyboardMargins: property expose directly the value of UIKit UIView.keyboardLayoutGuide. This is really useful when layout adjustment due to the keyboard is required. iOS 15+

Added by baegteun in Pull Request #238

1.10.0

2 years ago

New Objective-C interface

Instead of using verbose Objective-C with all brackets ([ ]):

[[[[[[logo.pinObjc top] left] width:100] aspectRatio] marginWithTop:topLayoutGuide + 10 horizontal:10 bottom:10] layout];

It now use function chaining:

logo.pinObjc.topInsets(safeArea).leftInsets(safeArea).width(100).aspectRatio().margin(margin).layout();

Added by protosse in Pull Request #229

1.9.4

2 years ago
  • Update to Xcode 12.5

1.9.3

3 years ago

Fix an issue with Automatic Sizing

  • Fix autoSizeThatFits wrong calculations. There was a problem with size calculations of inner views while using autoSizeThatFits.

1.9.0

3 years ago

Add Automatic Sizing feature

By calling autoSizeThatFits with the given available size and a layout closure, any layouting performed by PinLayout in that closure will be computed without affecting any subview's frame in the view hierarchy. On the other hand, any non PinLayout related code will also be executed. For that reason, it is really important to separate your layout code in it's own function to avoid any side effect during sizing, like setting the scroll view's content size in the above exemple or perhaps assigning itemSize in a collection view layout. That kind of code that depends on the layout should only be executed when layoutSubviews() is called as part of a normal layout pass.

The resulting size also takes into account the margins applied on subviews, even on the bottom and trailing sides. Automatic sizing makes it really easy to write your layout logic once and add proper sizing behavior with virtually no additional effort.

See https://github.com/layoutBox/PinLayout#automatic_sizing for more documentation. * Added by Antoine Lamy in Pull Request #216

1.8.13

4 years ago
  • Removed swift_version from the podspec. PinLayout supports all recent Swift versions, don't need to specify them individually.