1
0
mirror of https://github.com/mastodon/mastodon-ios.git synced 2025-02-03 02:37:37 +01:00

33 lines
625 B
Swift
Raw Normal View History

2021-01-28 16:10:30 +08:00
//
// NSLayoutConstraint.swift
// Mastodon
//
// Created by sxiaojian on 2021/1/28.
//
import UIKit
extension NSLayoutConstraint {
2021-07-19 17:12:45 +08:00
public func priority(_ priority: UILayoutPriority) -> Self {
2021-01-28 16:10:30 +08:00
self.priority = priority
return self
}
2021-07-19 17:12:45 +08:00
public func identifier(_ identifier: String?) -> Self {
self.identifier = identifier
return self
}
@discardableResult
public func activate() -> Self {
self.isActive = true
return self
}
@discardableResult
public func deactivate() -> Self {
self.isActive = false
return self
}
2021-01-28 16:10:30 +08:00
}