正常给UIButton设置网络图片的方法:
button.sd_setBackgroundImage(with: URL(string: urlStr), for: .normal)
如果你设置的背景图片,出现颜色变淡的问题,先看下是不是给按钮设置了button.isEnabled = false,如果设置了false,那么需要修改一下:
button.sd_setBackgroundImage(with: URL(string: urlStr), for: .disabled)
正常给UIButton设置网络图片的方法:
button.sd_setBackgroundImage(with: URL(string: urlStr), for: .normal)
如果你设置的背景图片,出现颜色变淡的问题,先看下是不是给按钮设置了button.isEnabled = false,如果设置了false,那么需要修改一下:
button.sd_setBackgroundImage(with: URL(string: urlStr), for: .disabled)
本文标题:SDWebImage设置UIButton背景图片,图片颜色变淡问
本文链接:https://www.haomeiwen.com/subject/pwzywdtx.html
网友评论