1
0
mirror of https://github.com/mastodon/mastodon-ios.git synced 2025-01-27 07:46:15 +01:00

21 lines
390 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
}
2021-01-28 16:10:30 +08:00
}