17 lines
219 B
Swift
17 lines
219 B
Swift
//
|
|
// UILabel.swift
|
|
//
|
|
//
|
|
// Created by Selim Mustafaev on 29.07.2023.
|
|
//
|
|
|
|
import UIKit
|
|
|
|
extension UILabel {
|
|
|
|
public func text(_ text: String?) -> Self {
|
|
self.text = text
|
|
return self
|
|
}
|
|
}
|