Hi I am using SDWebImage to set image to a button in xcode 10.2.1.
I am trying the following
import SDWebImage
cell.bProfileImage.sd_setImage(with:URL(s
The following is working perfectly.
cell.bProfileImage.sd_setBackgroundImage(with: URL(string:
individualChatsListArray[indexPath.row].profile_image), for:
UIControl.State.normal, placeholderImage: UIImage(named:
"default_profile"), options: SDWebImageOptions(rawValue: 0)) { (image,
error, cache, url) in
}