FoundationKit 是 Foundation 框架的扩展和实用工具集合。
实用工具,允许您检测给定字符串中的链接。
let detector = LinkDetector()
let links = detector.detectLinks(in: "Hello, check this link https://github.com")
print(links) // ["https://github.com"]
NotificationCenter 的封装,允许您观察和发布通知。
NotificationToken
是一个令牌,用于在它被释放时移除观察者。NotificationDispatcher.addObserver(forName: .didReceiveData) { notification in
print("data received")
}.store(in: &tokens)