ios – 使用翠鸟lib插入授权标题字段

ios – 使用翠鸟lib插入授权标题字段,第1张

概述我正在使用Kingfisher来显示来自网址的图片,但我的端点需要一个授权标头. 如何在iOS中使用Kingfisher或SDWeb Image这些网址? 使用Kingfisher,您需要创建一个请求修饰符(类型为AnyModifier)并将其作为参数传递给.kf.setImage方法的options部分,然后使用尾随闭包来实际设置图像. 例: import Kingfisherlet mod 我正在使用Kingfisher来显示来自网址的图片,但我的端点需要一个授权标头.
如何在iOS中使用Kingfisher或SDWeb Image这些网址?解决方法 使用Kingfisher,您需要创建一个请求修饰符(类型为AnyModifIEr)并将其作为参数传递给.kf.setimage方法的options部分,然后使用尾随闭包来实际设置图像.

例:

import Kingfisherlet modifIEr = AnyModifIEr { request in    var r = request    // replace "Access-Token" with the fIEld name you need,it's just an example    r.setValue(<YOUR_TOKEN>,forhttpheaderFIEld: "Access-Token")    return r}let url = URL(string: <YOUR_URL>)let iVIEw = <YOUR_IMAGEVIEW>iVIEw.kf.setimage(with: url,options: [.requestModifIEr(modifIEr)]) { (image,error,type,url) in    if error == nil && image != nil {        // here the downloaded image is cached,Now you need to set it to the imageVIEw        dispatchQueue.main.async {            iVIEw.image = image        }    } else {        // handle the failure        print(error)    }}
总结

以上是内存溢出为你收集整理的ios – 使用翠鸟lib插入授权标题字段全部内容,希望文章能够帮你解决ios – 使用翠鸟lib插入授权标题字段所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1028922.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-23
下一篇 2022-05-23

发表评论

登录后才能评论

评论列表(0条)

保存