Skip to content

Instantly share code, notes, and snippets.

@austinzheng
austinzheng / main.swift
Last active April 30, 2026 00:10
Anonymous class experiment in Swift
import Foundation
protocol SomeDelegateProtocol : class {
func firstFunc() -> String
func secondFunc() -> Bool
func thirdFunc() -> Self
}
class MyClass {
weak var delegate : SomeDelegateProtocol?