Add support for UILayoutPriority as priority target. (#466)

* Add support for UILayoutPriority as priority target.

* Fixed for tvOS
This commit is contained in:
Benjamin Chrobot 2017-10-13 05:32:30 -04:00 committed by Robert Payne
parent c0f66e42be
commit a07ef8b04c
1 changed files with 10 additions and 0 deletions

View File

@ -73,3 +73,13 @@ extension CGFloat: ConstraintPriorityTarget {
} }
} }
#if os(iOS) || os(tvOS)
extension UILayoutPriority: ConstraintPriorityTarget {
public var constraintPriorityTargetValue: Float {
return self.rawValue
}
}
#endif