mirror of https://github.com/SnapKit/SnapKit
Merge pull request #17 from cnoon/feature/uninstalling_constraints
Added a method for uninstalling constraints on a view.
This commit is contained in:
commit
ef24bbeb94
|
@ -97,4 +97,11 @@ public class ConstraintMaker {
|
|||
}
|
||||
LayoutConstraint.setLayoutConstraints(layoutConstraints, installedOnView: view)
|
||||
}
|
||||
|
||||
internal class func removeConstraints(view: View) {
|
||||
for existingLayoutConstraint in LayoutConstraint.layoutConstraintsInstalledOnView(view) {
|
||||
existingLayoutConstraint.constraint?.uninstall()
|
||||
}
|
||||
LayoutConstraint.setLayoutConstraints([], installedOnView: view)
|
||||
}
|
||||
}
|
|
@ -67,4 +67,8 @@ public extension View {
|
|||
public func snp_remakeConstraints(block: (maker: ConstraintMaker) -> ()) {
|
||||
ConstraintMaker.remakeConstraints(self, block: block)
|
||||
}
|
||||
|
||||
public func snp_removeConstraints() {
|
||||
ConstraintMaker.removeConstraints(self)
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue