mastodon-app-ufficiale-ipho.../MastodonSDK/Sources/MastodonExtension/NSLayoutConstraint.swift

21 lines
390 B
Swift
Raw Normal View History

2021-01-28 09:10:30 +01:00
//
// NSLayoutConstraint.swift
// Mastodon
//
// Created by sxiaojian on 2021/1/28.
//
import UIKit
extension NSLayoutConstraint {
2021-07-19 11:12:45 +02:00
public func priority(_ priority: UILayoutPriority) -> Self {
2021-01-28 09:10:30 +01:00
self.priority = priority
return self
}
2021-07-19 11:12:45 +02:00
public func identifier(_ identifier: String?) -> Self {
self.identifier = identifier
return self
}
2021-01-28 09:10:30 +01:00
}