Skip to content

Instantly share code, notes, and snippets.

@clns
clns / ViewTransformation.swift
Created January 12, 2025 19:39 — forked from ninjaprox/ViewTransformation.swift
Understanding UIView's tranform property
//: Playground - noun: a place where people can play
import UIKit
import XCPlayground
// MARK: - Helpers
extension UIView {
func addBorderWith(color: UIColor, width: CGFloat, alpha: CGFloat = 1) {
self.layer.borderColor = color.colorWithAlphaComponent(alpha).CGColor