tuxi / Strongify

Strongify is a 1-file µframework providing a nicer API for avoiding weak-strong dance.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Strongify

1-file µframework that gets rid of weak-strong dancing in Swift.

Basically allows you to go from this:

target.closure = { [weak self, weak other] some, arguments in 
    guard let strongSelf = self, let strongOther = other else { return }
    /// ... code
}

To this:

target.closure = strongify(weak: self, other) { strongSelf, strongOther, some, arguments in
    /// ... code
}

Read more

Installation

Swift Package Manager

Add .Package(url: "https://github.com/krzysztofzablocki/Strongify.git", majorVersion: 1) to your Package.swift file's dependencies.

CocoaPods

Add pod 'Strongify' to your Podfile.

Carthage

Add github "krzysztofzablocki/Strongify" to your Cartfile.

License

Strongify is available under the MIT license. See LICENSE for more information.

Attributions

I've used SwiftPlate to generate xcodeproj compatible with SPM, CocoaPods and Carthage.

About

Strongify is a 1-file µframework providing a nicer API for avoiding weak-strong dance.

License:MIT License


Languages

Language:Swift 99.1%Language:Ruby 0.9%