我有一个图像,我想UITableViewCell
使用UITableViewCellStyleSubtitle
提供 aUIImageView
和两行文本的样式以及一个可选的附件视图来显示。
但是,当我将 的内容模式设置UIImageView
为UIViewContentModeScaleAspectFit
或UIViewContentModeScaleAspectFill
时,似乎没有什么区别。这两种内容模式都只是显示整个图像,将文本向右移动以为图像腾出空间。
有没有人有任何例子说明这些在实践中实际上有何不同?文档说:
UIViewContentModeScaleAspectFit:
Scales the content to fit the size of the view by maintaining the aspect ratio. Any remaining area of the view’s bounds is transparent.
UIViewContentModeScaleAspectFill:
Scales the content to fill the size of the view. Some portion of the content may be clipped to fill the view’s bounds.
但这些内容模式的表现并不像宣传的那样。
编辑:我正在运行 SDK iOS 4。