Hello, I have a list in it, the pictures on the right are displayed, but they have different sizes, and I need to make them the same size. Tell me, please, how to do it. Here is the code:
NSURL *postURL = [NSURL URLWithString:mediaUrl_url]; NSURLRequest *postRequest = [NSURLRequest requestWithURL:postURL]; NSURLResponse *response = nil; NSError *error = nil; NSData *responseData = [NSURLConnection sendSynchronousRequest:postRequest returningResponse:&response error:&error]; [cell.imageView setImage:[UIImage imageWithData:responseData]];