FoundationKit

FoundationKit 是 Foundation 框架的扩展和实用工具集合。

LinkDetector

实用工具,允许您检测给定字符串中的链接。

let detector = LinkDetector()
let links = detector.detectLinks(in: "Hello, check this link https://github.com")
print(links) // ["https://github.com"]

NotificationDispatcher

NotificationCenter 的封装,允许您观察和发布通知。

NotificationDispatcher.addObserver(forName: .didReceiveData) { notification in
    print("data received")
}.store(in: &tokens)