Sha256: 40e2e240d1b5941547f69d763204679c34ba2f4a775944d726609cb00c50fd81
Contents?: true
Size: 587 Bytes
Versions: 9
Compression:
Stored size: 587 Bytes
Contents
module ProMotion class TableViewCell < UITableViewCell include TableViewCellModule attr_accessor :image_size # TODO: Is this necessary? def layoutSubviews super if self.image_size && self.imageView.image && self.imageView.image.size && self.imageView.image.size.width > 0 f = self.imageView.frame size_inset_x = (self.imageView.size.width - self.image_size) / 2 size_inset_y = (self.imageView.size.height - self.image_size) / 2 self.imageView.frame = CGRectInset(f, size_inset_x, size_inset_y) end end end end
Version data entries
9 entries across 9 versions & 1 rubygems