Reputation: 327
Can any one tell me the standard size of the Images that would appear on the left side of a TableView Cell.
Upvotes: 0
Views: 225
Reputation: 4989
You can always just check the size of the image view frame for one of your cells that has an image.
CGFloat imageHeight = someCell.imageView.frame.size.height;
CGFloat imageWidth = someCell.imageView.frame.size.width;
I haven't tried this out but it might give you what you want.
Upvotes: 0
Reputation: 64428
I believe the default is 40x32. The default cell height is 44 pixels and the images are just under that.
Of course, the display size has nothing to do with the size of the actual image object. You can display enormous images in a little bitty image views.
Upvotes: 3