目录
目录README.md

JustSignals

Build Status

JustSignals is a type-safe alternative to NotificationCenter and delegates. Use it if you don’t need binding and rx magic in your project, and just want to replace NotificationCenter with something more strict and safe. Otherwise take a look at RxSwift, ReactiveCocoa and Bond.

Installation

CocoaPods

# Podfile
use_frameworks!

target 'YOUR_TARGET_NAME' do
    pod 'JustSignals'
end

Replace YOUR_TARGET_NAME and then, in the Podfile directory, type:

$ pod install

Carthage

Add this to Cartfile

github "devandsev/JustSignals"

In the Cartfile directory, type:

$ carthage update

Usage examples

Signal without any data:

let signal = Signal<Void>()
signal.subscribe(with: self) {
    print("pong")
}

signal.fire(())

Signal with data:

let signal = Signal<Int>()
signal.subscribe(with: self) { data in
    print(data)
}

signal.fire(36)

If you need to pass multiple values:

let signal = Signal<(Int, Float, String, Bool)>()
signal.subscribe(with: self) { data in
    print(data)
}

signal.fire((3, 2.2, "test", false))

Subscription cancels automatically if the object that has been subscribed to the signal is deallocated, but if you need to unsubscribe early, use this:

signal.unsubscribe(self)

License

This project is licensed under the MIT License - see the LICENSE file for details.

关于
46.0 KB
邀请码
    Gitlink(确实开源)
  • 加入我们
  • 官网邮箱:gitlink@ccf.org.cn
  • QQ群
  • QQ群
  • 公众号
  • 公众号

©Copyright 2023 CCF 开源发展委员会
Powered by Trustie& IntelliDE 京ICP备13000930号