Skip to content

Instantly share code, notes, and snippets.

View iosdevzone's full-sized avatar

idz iosdevzone

View GitHub Profile
@iosdevzone
iosdevzone / gist:985340046154d290e7e9c22390efb6d7
Created November 8, 2023 04:49 — forked from salabaha/UIViewBuilder.swift
UIViewBuilder syntactic sugar
import UIKit
///
///Declaration
///
protocol UIViewBuilder: AnyObject {}
extension UIViewBuilder where Self: UIView {
init(_ build: ((Self) -> Void)) {