I need to load an image in a cell and i get a white border along my image.I’m calling the image from the link and it looks like this.

but my image looks like

i’m getting a white border in my image left and right side.Here is my code for image
UIImageView *item=[[UIImageView alloc]initWithFrame:CGRectMake(0, 0, 115, 130)];
NSString *imgstring=[NSString stringWithFormat: @"%@",[[mutarray objectAtIndex:indexPath.row ] valueForKey:@"imgurl"]];
NSURL *imgurl=[NSURL URLWithString:imgstring];
UIImage *image=[UIImage imageWithData:[NSData dataWithContentsOfURL:imgurl]];
[item setBackgroundColor:[UIColor clearColor]];
item.contentMode=UIViewContentModeScaleToFill;
[item setImage:image];
[cell.contentView addSubview:item];
Guidance please…
You can solve it by editing webimage becaust it has white background in that u can add the following code to differentiate the image by giving
Hope it helps..