Hi,
I'm trying to implement a SDWebImage in UITableView!
I have this code in my UITableViewCell in UpdateCell event
imageView.SetImage (
url: new NSUrl (urlImagem),
placeholder: UIImage.FromBundle ("Images/ReceitaDefault.png"),
completedHandler: (image, error, cacheType) => {
if(image != null)
{
image = GlobalFunctions.CropImage(image,0,0,10,10);
}
}
The problem is that in completedHandler I want to make a change in the image (crop) and he is not doing