blob: ce0f80166aef839a423072f75e5724da74ed1fd5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
//
// NSLayoutConstraint+Helpers.swift
// MullvadVPN
//
// Created by pronebird on 21/07/2022.
// Copyright © 2025 Mullvad VPN AB. All rights reserved.
//
import UIKit
extension NSLayoutConstraint {
/// Sets constraint priority and returns `self`
func withPriority(_ priority: UILayoutPriority) -> Self {
self.priority = priority
return self
}
}
|