Bling 2.0.0

Bling 2.0.0

Jan Gorman 维护。



Bling 2.0.0

Bling💰

Build Status codecov Version License Platform Carthage compatible

一个 Swift 语言编写,使用 Combine 的 Open Exchange Rates API 封装库。

要求

  • Swift 5.1
  • iOS 13.0+

安装

Bling 可在 Cocoapods 上找到。将其添加到您的 Podfile 中并运行 pod install

pod 'Bling'

用法

要使用 Bling,您需要创建一个新实例并传入您的应用程序 ID

let bling = Bling(appId: "")

bling.latest()
  .sink(receiveCompletion: {  },
        receiveValue: { print($0) })
  .store(in: &subscriptions)

测试

Bling 使用 Hippolyte 进行网络请求模拟,因此如果您想自行运行测试,在检出仓库后,运行 git submodule init 以获取依赖。

许可证

Hippolyte采用MIT许可证发布。请参阅LICENSE获取详细信息