24 lines
468 B
Swift
24 lines
468 B
Swift
//
|
|
// UseAutoLayout.swift
|
|
// VDS
|
|
//
|
|
// Created by Matt Bruce on 8/11/22.
|
|
//
|
|
|
|
import Foundation
|
|
import UIKit
|
|
|
|
@propertyWrapper
|
|
public struct UsesAutoLayout<T: UIView> {
|
|
public var wrappedValue: T {
|
|
didSet {
|
|
wrappedValue.translatesAutoresizingMaskIntoConstraints = false
|
|
}
|
|
}
|
|
|
|
public init(wrappedValue: T) {
|
|
self.wrappedValue = wrappedValue
|
|
wrappedValue.translatesAutoresizingMaskIntoConstraints = false
|
|
}
|
|
}
|