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

