func showImageForUrl(url: String) -> Observable<Async<Any>> {
let result = RxAlamofire
.requestJSON(.get,
url,
parameters: nil)
.flatMap { (response, json) -> Observable<Any> in
return Observable.just(json)
}.async()
return result
}
url String "http://1.bp.blogspot.com/-KhiJ6WYQn8Q/T7ZXxb_KHxI/AAAAAAAABvM/_l134PCuEcA/s1600/dog+photos+3.jpg"
I think one of the issue is the format of your request: it should be
requestData(...)
insteadrequestJSON(...)
to download data then convert it into image.Here is an example a bit simpler than the previous code
You can use it as following
You can go even further by filter out when invalid response, or when
UIImage
is nil, etc. Hope it helps.