2
2
mirror of https://github.com/mastodon/mastodon-ios synced 2025-04-11 22:58:02 +02:00
2021-07-19 20:16:56 +08:00

21 lines
390 B
Swift

//
// NSLayoutConstraint.swift
// Mastodon
//
// Created by sxiaojian on 2021/1/28.
//
import UIKit
extension NSLayoutConstraint {
public func priority(_ priority: UILayoutPriority) -> Self {
self.priority = priority
return self
}
public func identifier(_ identifier: String?) -> Self {
self.identifier = identifier
return self
}
}