Skip to content

Commit 0646904

Browse files
author
Luc Dion
committed
Update Changelog
1 parent 8fe4f44 commit 0646904

7 files changed

+16
-1
lines changed

CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,21 @@
77

88
# Change Log
99

10+
## [1.5.9](https://github.com/layoutBox/FlexLayout/releases/tag/1.5.9)
11+
Released on 2018-02-18
12+
13+
#### **`UIView.pin`** versus **`UIView.pinFrame`**
14+
Until now `UIView.pin` was used to layout views, but there's also another property called `UIView.pinFrame` that does something slightly different in situations where the view has a transform (`UIView.transform`, scaling, rotation, ...).
15+
16+
* `pin`: Set the position and the size of the **non-transformed view**. The size and position is applied **before the transform**. This is particularly useful when you want to animate a view using a transform without modifying its layout.
17+
18+
* `.pinFrame`: Set the position and the size on the **transformed view**. The size and position is applied **after the transform**.
19+
20+
See https://github.com/mirego/PinLayout#uiviews-transforms for more informations.
21+
22+
Added by [Luc Dion](https://github.com/lucdion) in Pull Request [#122](https://github.com/mirego/PinLayout/pull/122)
23+
24+
1025
## [1.5.8](https://github.com/layoutBox/FlexLayout/releases/tag/1.5.8)
1126
Released on 2018-01-20
1227

PinLayout.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
Pod::Spec.new do |s|
1010
s.name = "PinLayout"
11-
s.version = "1.5.8"
11+
s.version = "1.5.9"
1212
s.summary = "Fast Swift UIViews layouting without auto layout. No magic, pure code, full control and blazing fast. Concise syntax, intuitive, readable & chainable."
1313
s.description = "Fast Swift UIViews layouting without auto layout. No magic, pure code, full control and blazing fast. Concise syntax, intuitive, readable & chainable."
1414

9.93 KB
Loading
9.58 KB
Loading
8.29 KB
Loading
10.2 KB
Loading
9.56 KB
Loading

0 commit comments

Comments
 (0)