美文网首页
SDWebImage设置UIButton背景图片,图片颜色变淡问

SDWebImage设置UIButton背景图片,图片颜色变淡问

作者: 燃_火 | 来源:发表于2023-11-17 14:44 被阅读0次

    正常给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