我尝试通过 SDWebImage 设置图像。但 SDWebImage 取消操作。我试图在 Safari 中使用 url 获取此图像,而 Safari 向我询问了证书。当我取消对话窗口时,我得到了这个图像。
问题是:我可以在不修改此库的情况下禁用 SDWebImage 证书验证吗?
Best Answer-推荐答案 strong>
使用
UIImageView_name.sd_setImage(with: URL(string: logo), placeholderImage: nil, options: .allowInvalidSSLCertificates)
代替
UIImageView_name.sd_setImage(with: URL(string: logo))
UIImageView_name
供 UIButton 使用
UIButton_name.sd_setImage(with: URL(string: customer.getProfilePic()), for: .normal, placeholderImage: nil, options: .allowInvalidSSLCertificates, completed: nil)
关于ios - 没有 ssl 证书的 SDWebImage,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/50043324/
|