SwizzleSwift

1.0.0

This fork has a 1.0.0 tag rather than 1.0 to fix SPM complaining. https://github.com/MarioIannotta/SwizzleSwift/issues/4
Amzd/SwizzleSwift

What's New

SEMVER

2021-01-06T18:09:13Z

SwizzleSwift

Who said that method swizzling needs to look ugly? SwizzleSwift is a little wrapper that lets you swizzle selectors just one clean and elegant API.

SwizzleSwift: Swizzle selectors with just one clean and elegant API

Version License Platform

Installation

Pods

pod 'SwizzleSwift'

Swift package manager

From Xcode, select File → Swift Packages → Add Package Dependency → Select your project → Search SwizzleSwift

Usage example

Swizzle(<#AType.Self#>) {
	<#OriginalSelector#> <-> <#SwizzledSelector#>
}

Given the following controller

class ViewController: UIViewController {

    override func viewDidLoad() {
        super.viewDidLoad()
        print(#function)
    }
    
    override func viewWillAppear(_ animated: Bool) {
        super.viewWillAppear(animated)
        print(#function)
    }

}

extension UIViewController {

    @objc private func myViewDidLoad() {
        print(#function)
        myViewDidLoad()
    }
    
    @objc private func myViewWillAppear(_ animated: Bool) {
        print(#function)
        myViewWillAppear(animated)
    }
    
}

Swizzling the methods like this

extension UIViewController {

    @objc static func methodSwizzling() -> Void {
        Swizzle(ViewController.self) {
            #selector(viewDidLoad) <-> #selector(myViewDidLoad)
            #selector(viewWillAppear(_:)) <-> #selector(myViewWillAppear(_:))
        }
    }
    
}

Will produce the following output

myViewDidLoad()
viewDidLoad()
myViewWillAppear(_:)
viewWillAppear(_:)

Description

  • Swift Tools 5.1.0
View More Packages from this Author

Dependencies

  • None
Last updated: Wed Nov 29 2023 23:46:35 GMT-1000 (Hawaii-Aleutian Standard Time)