Add `pin.readableMargins` and `pin.layoutmargins` properties
Add properties:
-
pin.readableMargins: UIEdgeInset
:
PinLayout'sUIView.pin.readableMargins
property expose UIKitUIView.readableContentGuide
as an UIEdgeInsets. This is really useful since UIKit only expose the readableContent area to Auto Layout using UILayoutGuide. -
pin.layoutmargins: UIEdgeInset
PinLayout'sUIView.pin.layoutMargins
property expose directly the value of UIKitUIView.layoutMargins
. The property exists only to be consistent with the other areas:pin.safeArea
,pin.readableMargins
andpin.layoutmargins
. So its usage is not necessary.