dankinsoid/VDChain
Properties chaining
Features
- Intuitive syntax for object modification
- Improved readability and maintainability of Swift code
- Great for both beginners and advanced Swift developers
Requirements
- Swift 5.1+
- iOS 11.0+
- macOS 10.13+
Usage
Start by importing SwiftChain in the files where you want to use it:
import VDChainYou can then use function chaining to modify your objects. For example:
let label = UILabel().chain
.text("Text")
.textColor(.red)
.font(.system(24))
.apply()In this example, UILabel properties text, textColor, and font are set through function chaining.
Chain Creation
There are three methods you can use to create a chain with VDChain:
- Using the
.chainproperty: VDChain provides the.chainproperty on anyNSObjecttype. You can also add this property to your own types by implementing theChainableprotocol. This protocol provides both static and instance properties, allowing you to call.chainon your types directly.
``swift let label = UILabel().chain .text("Hello, World!") .textColor(.red) .apply() ``
- Using the postfix operator
~: You can also create a chain using the~operator. This is a shorthand way to begin a chain on any value without calling the.chainproperty or implementingChainableprotocol.
``swift let button = UIButton()~ .title("Click me") .titleColor(.blue) .apply() ``
- Using
EmptyChainingorTypeChaining: You can create an empty chain using theEmptyChainingclass.
``swift let view = EmptyChaining(self).wrap() .backgroundColor(.green) .apply() ``
Every chain method returns a Chain<...> object. To retrieve the original object from the chain, simply end your chain with the apply() method.
Type and Instance Chaining
VDChain supports chaining on both types and instances. You can define a chain of methods on a type and later use this chain on an instance of that type:
// Create a chain on the UILabel type that sets the text color to black
let blackColorModifier = UILabel.chain
.textColor(.black)
.apply()
// Use the chain on an instance of UILabel
let label = UILabel().chain
.modifier(blackColorModifier)
.apply()This allows you to define complex chains of modifications at the type level and easily apply them to instances as needed.
Real-world Usage Example
To see VDChain in action, check out my other library, VDLayout.
Installation
Create a Package.swift file.
// swift-tools-version:5.0
import PackageDescription
let package = Package(
name: "SomeProject",
dependencies: [
.package(url: "https://github.com/dankinsoid/VDChain.git", from: "3.6.0")
],
targets: [
.target(name: "SomeProject", dependencies: ["VDChain"])
]
)$ swift buildAdd the following line to your Podfile:
pod 'VDChain'and run pod update from the podfile directory first.
License
VDChain is available under the MIT license. See the LICENSE file for more info.
Package Metadata
Repository: dankinsoid/VDChain
Stars: 3
Forks: 0
Open issues: 0
Default branch: main
Primary language: swift
License: MIT
README: README.md