RxSwiftでジェネリクスを使ってAPIをたたく備忘録
コード
本記事は備忘録なので説明はほとんどなしです。
なので早速コードです。
import Foundation
import RxSwift
import Alamofire
protocol APIServiceProtocol {
func excute<T: Codable>(urlString: String) -> Single<T>
}
class APIService: APIServiceProtocol {
func excute<T: Codable>(urlString: String) -> Single<T> {
Single<T>.create { (single) -> Disposable in
let url = URL(string: urlString)!
AF.request(url).response { (response) in
guard let data = response.data else {
return
}
do {
let decodedData = try JSONDecoder().decode(T.self, from: data)
single(.success(decodedData))
} catch {
single(.failure(error))
}
}
return Disposables.create()
}
}
}
こんな感じです。
何気にジェネリクスを利用したのはじめてなんですがTにたいして配列もいけるんですね
呼び出しがわ
let qiita: Single<[QiitaModel]> = apiService.excute(urlString: "https://qiita.com/api/v2/items")
qiita.asObservable().bind(to: tableView.rx.items) { tableView, row, model in
let cell = tableView.dequeueReusableCell(withIdentifier: "cell")!
cell.textLabel?.text = model.title
cell.detailTextLabel?.text = model.user.name
return cell
}.disposed(by: disposeBag)
qiitaAPI
を叩いています。
一行目が一番大事です。
型を明示してあげないといけないので一行目なしだとエラーが吐かれます
以上です。
Author And Source
この問題について(RxSwiftでジェネリクスを使ってAPIをたたく備忘録), 我々は、より多くの情報をここで見つけました https://qiita.com/apapapa/items/763f3bfbfeb9d0b0a8b5著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .