如何在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插入授权标题字段所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)