You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
*`UIView.pin.keyboardMargins`: property expose directly the value of UIKit [`UIView.keyboardLayoutGuide`](https://developer.apple.com/documentation/uikit/keyboards_and_input/adjusting_your_layout_with_keyboard_layout_guide). This is really useful when layout adjustment due to the keyboard is required. iOS 15+
16
+
17
+
Added by [baegteun](https://github.com/baekteun) in Pull Request [#238](https://github.com/layoutBox/PinLayout/pull/238)
Copy file name to clipboardExpand all lines: PinLayout.podspec
+1-1
Original file line number
Diff line number
Diff line change
@@ -8,7 +8,7 @@
8
8
9
9
Pod::Spec.newdo |spec|
10
10
spec.name="PinLayout"
11
-
spec.version="1.10.0"
11
+
spec.version="1.10.1"
12
12
spec.summary="Fast Swift Views layouting without auto layout. No magic, pure code, full control and blazing fast."
13
13
spec.description="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]"
The following image display the 3 areas on an iPad in landscape mode. (safeArea, readableMargins, layoutMargins)
1235
1236
@@ -1364,12 +1365,8 @@ PinLayout's `UIView.pin.layoutMargins` property expose directly the value of UIK
1364
1365
### 4. pin.keyboardMargins:
1365
1366
1366
1367
##### Property:
1367
-
***`pin.keyboardMargins: UIEdgeInset`**
1368
-
PinLayout's `UIView.pin.keyboardMargins` property expose directly the value of UIKit [`UIView.keyboardLayoutGuide`](https://developer.apple.com/documentation/uikit/keyboards_and_input/adjusting_your_layout_with_keyboard_layout_guide). This is really useful when layout adjustment due to the keyboard is required.
1369
-
1370
-
Bottom of safe area when the keyboard undocked.
1371
-
1372
-
This property can be used from iOS 15 and above.
1368
+
***`pin.keyboardMargins: UIEdgeInset`[iOS 15+]**
1369
+
PinLayout's `UIView.pin.keyboardMargins` property expose directly the value of UIKit [`UIView.keyboardLayoutGuide`](https://developer.apple.com/documentation/uikit/keyboards_and_input/adjusting_your_layout_with_keyboard_layout_guide). This is really useful when layout adjustment due to the keyboard is required. [iOS 15+]
0 commit comments