I'm a little confused as to why my image isn't sized properly. I am passing in a 44x44 sized image to a UITableView
with a default row height of 44 pixels, but I get the following result:
Is this not how I should be setting my UITableViewCell
image?
UIImage *imageOne = [UIImage imageNamed:@"sent-indicator@2x.png"];
cell.imageView.image = imageOne;