mirror of
https://github.com/trudnai/Steve2.git
synced 2025-02-06 03:31:02 +00:00
20 lines
393 B
Swift
20 lines
393 B
Swift
//
|
|
// NSLayoutConstraint.swift
|
|
// A2Mac
|
|
//
|
|
// Created by Tamas Rudnai on 11/5/22.
|
|
// Copyright © 2022 GameAlloy. All rights reserved.
|
|
//
|
|
|
|
import Cocoa
|
|
|
|
|
|
extension NSLayoutConstraint {
|
|
|
|
override public var description: String {
|
|
let id = identifier ?? super.description
|
|
return "constaint id: \(id), constant: \(constant)" //you may print whatever you want here
|
|
}
|
|
}
|
|
|