UITableViewCell image shrinks when selected.
I have a UITableView with 2 sections. Both sections load images into UITableViewCell imageView. All images load just fine but when I select a row in the second section the image shrinks. I tried reloading the image in didSelectRowAtIndexPath but it doesn't fix my problem. I also tried setting the AutoResize to false but that doesn't work either.
[cell.imageView setAutoresizesSubviews:NO];
Any suggestions on how I can fix this?
Note: The second section are twitter results from the Twitter Search API.
|